        /* CSS Variables for Themes */
        :root {
            --primary-color: #6c5ce7;
            --secondary-color: #00cec9;
            --text-color: #f5f6fa;
            --bg-color: #1e272e;
            --card-bg: rgba(30, 39, 46, 0.7);
            --nav-bg: rgba(30, 39, 46, 0.9);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --neon-glow: 0 0 10px rgba(108, 92, 231, 0.8);
            --neon-glow-secondary: 0 0 10px rgba(0, 206, 201, 0.6);
        }

        .light-mode {
            --primary-color: #6c5ce7;
            --secondary-color: #00cec9;
            --text-color: #2d3436;
            --bg-color: #f5f6fa;
            --card-bg: rgba(245, 246, 250, 0.7);
            --nav-bg: rgba(245, 246, 250, 0.9);
            --glass-border: rgba(0, 0, 0, 0.1);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            --neon-glow: 0 0 10px rgba(108, 92, 231, 0.4);
            --neon-glow-secondary: 0 0 10px rgba(0, 206, 201, 0.4);
        }
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .contact-form {
            background: var(--glass);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--glass-border);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            color: var(--light);
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }


        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            transition: all 0.5s ease;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--card-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-color);
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-color);
            transform: translate(-50%, -50%);
            pointer-events: none;
            mix-blend-mode: screen;
            z-index: 9999;
            filter: blur(1px);
            opacity: 0.7;
            transition: transform 0.1s ease;
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--primary-color);
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
            filter: blur(0.5px);
            opacity: 0.5;
        }
/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: var(--nav-bg);
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--neon-glow-secondary);
    z-index: 1001;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Header Icons Container */
.icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Theme Controls Container */
.theme-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-size: 1.1rem;
    border: 1px solid var(--glass-border);
}

.theme-toggle-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.light-mode .theme-toggle-btn i::before {
    content: '\f185'; /* Sun icon */
}

/* Color Palette Button */
.color-palette-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-size: 1.1rem;
    border: 1px solid var(--glass-border);
}

.color-palette-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

/* Color Palette Menu */
.color-palette-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 12px;
    margin-top: 10px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 120px;
    z-index: 1001;
}

.color-palette-btn:hover .color-palette-menu,
.color-palette-btn:focus-within .color-palette-menu {
    display: grid;
}

.color-option {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
}

.color-option:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* User Account Styles */
.user-account {
    position: relative;
    margin-left: 0;
}

.userBtn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
}

.userBtn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.user-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    width: 280px;
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-account:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Login Form Styles */
.login-form h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

.input-field {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.2);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-size: 0.8rem;
    color: var(--text-color);
}

.form-options a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-btn {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.register-text {
    margin-top: 15px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-color);
}

.register-text a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Account Menu Styles (logged in) */
.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid var(--primary-color);
}

.username {
    color: var(--text-color);
    font-weight: 500;
}

.account-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-links li {
    margin: 8px 0;
}

.account-links a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.account-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.account-links i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    header {
        padding: 1rem;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--nav-bg);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: all 0.5s ease;
        z-index: 1000;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active i::before {
        content: '\f00d';
    }
    
    .icons {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .user-dropdown {
        width: 250px;
        right: -20px;
    }
    
    .theme-controls {
        gap: 0.5rem;
    }
    
    .theme-toggle-btn,
    .color-palette-btn,
    .userBtn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .color-palette-menu {
        width: 100px;
        padding: 8px;
        gap: 8px;
    }
    
    .color-option {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    header {
        padding: 0.8rem;
    }
    
    .user-dropdown {
        width: 220px;
        padding: 15px;
    }
    
    .login-form h3 {
        font-size: 1.1rem;
    }
    
    .theme-toggle-btn,
    .color-palette-btn,
    .userBtn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .color-palette-menu {
        right: -20px;
    }
    
    .icons {
        gap: 0.8rem;
    }
}
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 10%;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(26, 9, 155, 0.365) 0%, rgba(30, 39, 46, 0) 70%);
            z-index: -1;
            animation: pulse 15s infinite alternate;
        }

        @keyframes pulse {
            0% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(30%, 20%);
            }
            100% {
                transform: translate(-20%, -30%);
            }
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--primary-color);
            text-shadow: var(--neon-glow);
        }

        .typing-text {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            height: 2rem;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn:hover::before {
            opacity: 1;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
        }

        .btn:active {
            transform: translateY(1px) scale(0.9);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-links a {
            color: var(--text-color);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
            text-shadow: var(--neon-glow);
        }

        /* Sections */
        section {
            padding: 6rem 10%;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--glass-border);
            transition: all 0.5s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), var(--neon-glow-secondary);
        }

        .project-img {
            height: 200px;
            overflow: hidden;
        }

        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-img img {
            transform: scale(1.1);
        }

        .project-info {
            padding: 1.5rem;
        }
        .project-info p a 
        {
            color: var(--primary);
        }
        .project-info h3 a{
            text-decoration: none;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .project-info p {
            margin-bottom: 1.5rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .tech-tag {
            background: rgba(108, 92, 231, 0.2);
            color: var(--primary-color);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .project-links {
            display: flex;
            gap: 1rem;
        }

        .project-links a {
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .project-links a:first-child {
            color: var(--primary-color);
        }

        .project-links a:last-child {
            color: var(--secondary-color);
        }

        /* Skills Section */
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .skill-category {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .skill-category h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .skill-item {
            margin-bottom: 1.5rem;
        }

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .skill-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 4px;
            transition: width 1s ease;
        }
        /* Footer */
        footer {
            background: var(--nav-bg);
            color: var(--text-color);
            text-align: center;
            padding: 2rem;
            border-top: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        footer p {
            margin-bottom: 1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .copyright {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            section {
                padding: 5rem 8%;
            }
        }

        @media (max-width: 768px) {

            .hero {
                padding: 0 5%;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .typing-text {
                font-size: 1.2rem;
            }

            .social-links {
                justify-content: center;
            }

            section {
                padding: 4rem 5%;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 3rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .btn {
                padding: 0.6rem 1.5rem;
            }

            .project-card {
                min-width: 100%;
            }
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
/* about */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-img:hover img {
    transform: translateY(-10px);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 30px;
    color: var(--gray);
}

.skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.chip {
    padding: 8px 15px;
    background: var(--glass);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content {
        gap: 30px;
    }
    
    .about-img img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-img {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .about-img img {
        max-width: 300px;
    }
    
    .about-text {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .chip {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}


/* signup css */
        .signupcontainer {
            border-radius: 10px;
            width: 100%;
            max-width: 600px;
            padding: 30px;
            margin: 0 auto;
            background: var(--nav-bg);
            color: var(--text-color);
            text-align: center;
            padding: 2rem;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .error {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        .login-link {
            text-align: center;
            margin-top: 20px;
            color: #666;
        }

        .login-link a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .login-link a:hover {
            text-decoration: underline;
        }

        .success-message {
            display: none;
            text-align: center;
            color: #27ae60;
            font-weight: 500;
            margin-top: 20px;
        }
