* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0A0F23;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00FF9D;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00FF9D, #00D4AA);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #0A0F23;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00FF9D;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FF9D, #00D4AA);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Auth Form */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* To offset the fixed navbar */
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, #00FF9D15, transparent),
                radial-gradient(circle at 80% 20%, #0099FF15, transparent),
                radial-gradient(circle at 40% 40%, #00FF9D10, transparent);
}

.auth-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    padding: 3rem;
    background: rgba(13, 20, 41, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.auth-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00FF9D;
    font-weight: 600;
}

.auth-form input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: #00FF9D;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.btn-primary {
    background: linear-gradient(45deg, #00FF9D, #00D4AA);
    color: #0A0F23;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
}

.auth-switch-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #B8C5D6;
}

.auth-switch-link a {
    color: #00FF9D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-switch-link a:hover {
    color: #ffffff;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #00FF9D;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: rgba(10, 15, 35, 0.95);
        backdrop-filter: blur(20px);
        padding: 1rem 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
    .auth-container {
        padding: 2rem;
    }

    .auth-title {
        font-size: 2rem;
    }
}
/* Footer */
.footer {
    background: #050A1A;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(0, 255, 157, 0.2);
    margin-top: auto; /* Push footer to the bottom */
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #00FF9D;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #B8C5D6;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00FF9D;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #B8C5D6;
}

/* Ensure body takes full height */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.auth-section {
    flex: 1;
}
