
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --success-color: #10b981;
    --gradient-blue: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Three Column Grid Layout */
.card-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Card Styling */
.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: #2c3e50;
    color: #fff;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px 12px 0 0;
}

.card-content {
    padding: 15px;
    max-height: 500px;
    overflow-y: auto;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.card-content li:last-child {
    border-bottom: none;
}

.card-content a {
    text-decoration: none;
    color: #34495e;
    display: block;
}

.card-title {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #7f8c8d;
}

.card-meta .date {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .card-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .card-grid-three {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        font-size: 1.1rem;
    }
    
    .card-content {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .card-meta {
        flex-direction: column;
    }
    
    .card-meta span {
        margin-bottom: 3px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
}

.site-header {
    background: var(--gradient-blue);
    color: var(--text-light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 50;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
   
    flex-wrap: wrap;
}

.logo-section img {
    height: 70px;
    width: auto;
    margin-right: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    text-align: center;
}

.logo-text h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 400;
}

.job-button {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
    
    margin: 0 auto;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 16px;
    margin: 4px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.state-tags-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.state-tags-container::-webkit-scrollbar {
    display: none;
}

.state-tags {
    display: inline-block;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.state-tags a {
    display: inline-block;
    color: var(--text-light);
    padding: 6px 12px;

    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.state-tags a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.state-tags a[href*="education"] {
    background: var(--success-color);
    font-weight: 600;
}

.state-tags a[href*="education"]:hover {
    background: #0d9f6e;
}

@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .logo-section img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .nav-menu {
        justify-content: flex-start;
        padding: 10px;
    }

    .nav-menu a {
        padding: 6px 12px;
        font-size: 13px;
    }

    .state-tags {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 22px;
    }

    .logo-text p {
        font-size: 12px;
    }

    .nav-menu a {
        padding: 5px 10px;
        margin: 2px;
        font-size: 12px;
    }

    .state-tags a {
        padding: 4px 8px;
        font-size: 12px;
    }
}

    /* Footer Styles */
    .site-footer {
        background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
        color: #fff;
        padding: 40px 0 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    .site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #3498db, #e74c3c, #f39c12, #2ecc71);
    }

    .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-links a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 8px 15px;
        border-radius: 4px;
        transition: all 0.3s ease;
        position: relative;
    }

    .footer-links a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .footer-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #3498db;
        transition: all 0.3s ease;
    }

    .footer-links a:hover::after {
        width: 60%;
        left: 20%;
    }

    .site-footer p {
        margin: 15px 0;
        line-height: 1.6;
    }

    .site-footer a {
        color: #3498db;
        transition: color 0.3s ease;
    }

    .site-footer a:hover {
        color: #f39c12;
        text-decoration: none;
    }

    .site-footer p:last-child {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
        font-weight: 300;
    }

    .site-footer strong {
        color: #f39c12;
        font-weight: 600;
    }

    /* Copyright text */
    .site-footer p:first-of-type {
        font-size: 14px;
        color: #bdc3c7;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .footer-links {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .footer-links a {
            padding: 6px 10px;
        }

        .site-footer p:last-child {
            padding: 0 20px;
            font-size: 13px;
        }
    }

    /* Animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .site-footer>div {
        animation: fadeIn 0.8s ease-out forwards;
    }

    :root {
        --job-blue: #1752f5;
        --edu-green: #28a745;
        --location-teal: #17a2b8;
        --state-yellow: #ffc107;
        --admit-red: #dc3545;
        --result-purple: #6f42c1;
        --answer-teal: #20c997;
        --syllabus-orange: #fd7e14;
        --text-light: #ffffff;
        --text-dark: #212529;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .job-categories-container {
        font-family: 'Segoe UI', 'Roboto', sans-serif;
        padding: 15px;
        max-width: 800px;
        margin: 0 auto;
    }

    .job-category {
        margin-bottom: 20px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
    }

    .job-category:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .job-category::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
    }

    .job-category-inner {
        padding: 18px 25px;
        position: relative;
        overflow: hidden;
    }

    .job-category-inner::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 40px;
        height: 200%;
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(30deg);
        transition: var(--transition);
    }

    .job-category:hover .job-category-inner::after {
        right: 110%;
    }

    .job-category h3 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .job-category a {
        display: block;
        color: inherit;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    /* Individual category colors */
    .job-notifications {
        background: linear-gradient(135deg, var(--job-blue) 0%, #1a3ff5 100%);
        color: var(--text-light);
    }

    .jobs-education {
        background: linear-gradient(135deg, var(--edu-green) 0%, #1e983b 100%);
        color: var(--text-light);
    }

    .jobs-location {
        background: linear-gradient(135deg, var(--location-teal) 0%, #11899e 100%);
        color: var(--text-light);
    }

    .state-jobs {
        background: linear-gradient(135deg, var(--state-yellow) 0%, #ffb700 100%);
        color: var(--text-dark);
    }

    .admit-cards {
        background: linear-gradient(135deg, var(--admit-red) 0%, #c82333 100%);
        color: var(--text-light);
    }

    .results {
        background: linear-gradient(135deg, var(--result-purple) 0%, #5a32a8 100%);
        color: var(--text-light);
    }

    .answer-keys {
        background: linear-gradient(135deg, var(--answer-teal) 0%, #18a97b 100%);
        color: var(--text-light);
    }

    .syllabus {
        background: linear-gradient(135deg, var(--syllabus-orange) 0%, #f76707 100%);
        color: var(--text-light);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .job-category-inner {
            padding: 15px 20px;
        }

        .job-category h3 {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .job-categories-container {
            padding: 10px;
        }

        .job-category {
            margin-bottom: 15px;
        }

        .job-category h3 {
            font-size: 1rem;
        }
    }

    :root {
        /* Color Variables */
        --primary-blue: #007bff;
        --secondary-blue: #0069d9;
        --light-blue: #e3f2fd;
        --success-green: #4caf50;
        --warning-orange: #ff9800;
        --info-blue: #2196f3;
        --danger-red: #e91e63;
        --teal: #00bcd4;
        --purple: #673ab7;
        --white: #ffffff;
        --light-gray: #f8f9fa;
        --dark-gray: #343a40;
        --text-dark: #212529;
        --text-light: #f8f9fa;

        /* Effects */
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
        --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    body {
        font-family: 'Segoe UI', 'Roboto', sans-serif;
        background-color: var(--light-gray);
        color: var(--text-dark);
        line-height: 1.6;
    }

    .main-container {
        display: flex;
        gap: 20px;
        padding: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .content-column {
        flex: 0 0 75%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .sidebar-column {
        flex: 0 0 25%;
    }

    /* Header Styles */
    .section-header {
        background: linear-gradient(135deg, var(--primary-blue), #64b5f6);
        color: var(--white);
        padding: 15px 25px;
        margin: 20px 0;
        border-radius: 12px;
        font-size: 1.8rem;
        text-align: center;
        box-shadow: var(--shadow-md);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .section-header::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0) 100%);
        transform: translateX(-100%);
        z-index: -1;
        transition: var(--transition);
    }

    .section-header:hover::after {
        transform: translateX(100%);
    }

    /* Category Header */
    .category-header {
        display: inline-block;
        margin: 15px auto;
        padding: 12px 25px;
        background: var(--light-blue);
        border-left: 5px solid var(--primary-blue);
        border-radius: 8px;
        font-size: 1.3rem;
        color: var(--primary-blue);
        text-align: center;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
    }

    .category-header:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    /* Card Grid */
    .card-grid {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .card {
        flex: 1;
        border-radius: 10px;
        box-shadow: var(--shadow-md);
        overflow: hidden;
        transition: var(--transition);
       
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .card-header {
        padding: 15px;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .card-content {
        padding: 15px;
        min-height: 200px;
    }

    /* Card Color Variants */
    .card-jobs .card-header {
        background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
        color: var(--success-green);
        border-left: 5px solid var(--success-green);
    }

    .card-admit .card-header {
        background: linear-gradient(135deg, #fff3e0, #ffe0b2);
        color: var(--warning-orange);
        border-left: 5px solid var(--warning-orange);
    }

    .card-results .card-header {
        background: linear-gradient(135deg, #e3f2fd, #bbdefb);
        color: var(--info-blue);
        border-left: 5px solid var(--info-blue);
    }

    .card-state .card-header {
        background: linear-gradient(135deg, #fce4ec, #f8bbd0);
        color: var(--danger-red);
        border-left: 5px solid var(--danger-red);
    }

    .card-answer .card-header {
        background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
        color: var(--teal);
        border-left: 5px solid var(--teal);
    }

    .card-syllabus .card-header {
        background: linear-gradient(135deg, #ede7f6, #d1c4e9);
        color: var(--purple);
        border-left: 5px solid var(--purple);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .main-container {
            flex-direction: column;
        }

        .content-column,
        .sidebar-column {
            flex: 1;
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .card-grid {
            flex-direction: column;
        }

        .section-header {
            font-size: 1.5rem;
            padding: 12px 20px;
        }

        .category-header {
            font-size: 1.1rem;
            padding: 10px 20px;
        }
    }

    @media (max-width: 480px) {
        .main-container {
            padding: 15px;
            gap: 15px;
        }

        .section-header {
            font-size: 1.3rem;
            margin: 15px 0;
        }
    }

    :root {
        /* Color Variables */
        --primary-blue: #007bff;
        --secondary-blue: #0056b3;
        --success-green: #28a745;
        --info-teal: #17a2b8;
        --light-blue-bg: #e3f2fd;
        --light-green-bg: #eafaf1;
        --light-teal-bg: #e0f7fa;
        --white: #ffffff;
        --text-dark: #212529;
        --text-light: #f8f9fa;
        --gradient-blue: linear-gradient(90deg, #007bff, #6610f2);

        /* Effects */
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
        --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
    }

    body {
        font-family: 'Segoe UI', 'Poppins', sans-serif;
        background-color: #f8f9fa;
        color: var(--text-dark);
        line-height: 1.6;
        margin: 0;
        padding: 0;
    }

    .main-container {
        display: flex;
        gap: 30px;
        padding: 30px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .content-column {
        flex: 0 0 75%;
        background: var(--white);
        border-radius: 12px;
        padding: 30px;
        box-shadow: var(--shadow-sm);
    }

    .sidebar-column {
        flex: 0 0 25%;
    }

    /* Header Styles */
    .page-header {
        background: linear-gradient(135deg, var(--primary-blue), #64b5f6);
        color: var(--white);
        padding: 20px;
        margin: 0 0 30px 0;
        border-radius: 12px;
        font-size: 1.8rem;
        text-align: center;
        box-shadow: var(--shadow-md);
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0) 100%);
        transform: translateX(-100%);
        transition: var(--transition);
    }

    .page-header:hover::before {
        transform: translateX(100%);
    }

    /* Box Style Section Headers */
    .box-header {
        display: inline-block;
        margin: 15px 0;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.3rem;
        font-weight: 600;
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        width: 100%;
        box-sizing: border-box;
    }

    .box-header:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .updates-box {
        background: var(--light-blue-bg);
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
    }

    .district-box {
        background: var(--light-green-bg);
        border: 2px solid var(--success-green);
        color: var(--success-green);
    }

    .education-box {
        background: var(--light-teal-bg);
        border: 2px solid var(--info-teal);
        color: var(--info-teal);
    }

    /* State Title */
    .state-title {
        font-size: 2.2rem;
        font-weight: 700;
        text-align: left;
        margin: 40px 0 30px;
        background: var(--gradient-blue);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        display: inline-block;
    }

    .state-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient-blue);
        border-radius: 3px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1200px) {
        .main-container {
            flex-direction: column;
            padding: 20px;
        }

        .content-column,
        .sidebar-column {
            flex: 1;
            width: 100%;
        }

        .sidebar-column {
            order: -1;
            margin-bottom: 30px;
        }
    }

    @media (max-width: 768px) {
        .page-header {
            font-size: 1.5rem;
            padding: 15px;
        }

        .box-header {
            font-size: 1.1rem;
            padding: 12px 20px;
        }

        .state-title {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 480px) {
        .main-container {
            padding: 15px;
            gap: 20px;
        }

        .content-column {
            padding: 20px;
        }

        .box-header {
            padding: 10px 15px;
        }
    }


    /* style.css - Modern Login Page Styles */
    :root {
        --primary-color: #4361ee;
        --secondary-color: #3f37c9;
        --accent-color: #4cc9f0;
        --light-color: #f8f9fa;
        --dark-color: #212529;
        --success-color: #4bb543;
        --error-color: #ff3333;
        --border-radius: 12px;
        --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }



    .form-container {
        background: white;
        width: 100%;
        max-width: 450px;
        padding: 40px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        transform: translateY(0);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .form-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    }

    h2 {
        color: var(--dark-color);
        text-align: center;
        margin-bottom: 30px;
        font-weight: 700;
        font-size: 28px;
        position: relative;
    }

    h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
    }

    form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    input {
        padding: 15px 20px;
        border: 2px solid #e9ecef;
        border-radius: var(--border-radius);
        font-size: 16px;
        transition: var(--transition);
    }

    input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
    }

    input::placeholder {
        color: #adb5bd;
    }

    button {
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 15px;
        border: none;
        border-radius: var(--border-radius);
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 10px;
    }

    button:hover {
        background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
        transform: translateY(-2px);
    }

    button:active {
        transform: translateY(0);
    }

    p {
        text-align: center;
        margin-top: 20px;
        color: #6c757d;
    }

    a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
    }

    a:hover {
        color: var(--secondary-color);
        text-decoration: underline;
    }

    .error {
        background-color: rgba(255, 51, 51, 0.1);
        color: var(--error-color);
        padding: 15px;
        border-radius: var(--border-radius);
        margin-bottom: 20px;
        text-align: center;
        border-left: 4px solid var(--error-color);
        animation: shake 0.5s ease-in-out;
    }

    /* Animations */
    @keyframes shake {

        0%,
        100% {
            transform: translateX(0);
        }

        20%,
        60% {
            transform: translateX(-5px);
        }

        40%,
        80% {
            transform: translateX(5px);
        }
    }

    /* Responsive Design */
    @media (max-width: 576px) {
        .form-container {
            padding: 30px 20px;
        }

        h2 {
            font-size: 24px;
        }

        input,
        button {
            padding: 12px 15px;
        }
    }

    /* Floating label variation (optional) */
    .form-group {
        position: relative;
        margin-bottom: 25px;
    }

    .form-group input {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e9ecef;
        border-radius: var(--border-radius);
        font-size: 16px;
    }

    .form-group label {
        position: absolute;
        top: 15px;
        left: 20px;
        color: #adb5bd;
        transition: var(--transition);
        pointer-events: none;
    }

    .form-group input:focus+label,
    .form-group input:not(:placeholder-shown)+label {
        top: -10px;
        left: 10px;
        font-size: 12px;
        background: white;
        padding: 0 5px;
        color: var(--primary-color);
    }
