
#auth-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-body);
    z-index: 9999;
    overflow: hidden;
}

.login-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.login-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 224, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    width: 60px;
    height: 60px;
    background: #FFE5A0;
    color: #000;
    font-size: 32px;
    font-weight: 800;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 20px rgba(255, 229, 160, 0.3);
}

.login-header h2 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.login-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.login-input {
    width: 100%;
    background: #0A0C0E;
    border: 1px solid var(--border-color);
    padding: 15px;
    padding-left: 15px;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .login-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(0, 224, 255, 0.1);
    }

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

    .form-group label i {
        margin-right: 5px;
        color: var(--primary);
    }

.login-options {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

    .login-options a {
        color: var(--primary);
        font-size: 0.85rem;
        text-decoration: none;
        transition: color 0.2s;
    }

        .login-options a:hover {
            color: #fff;
            text-decoration: underline;
        }

.btn-primary.full-width, .btn-secondary.full-width {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
}

.login-divider {
    margin: 25px 0;
    text-align: center;
    position: relative;
}

    .login-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--border-color);
        z-index: 0;
    }

    .login-divider span {
        background: var(--bg-panel);
        padding: 0 15px;
        color: var(--text-muted);
        font-size: 0.85rem;
        position: relative;
        z-index: 1;
    }

.auth-message-area {
    margin-top: 20px;
    min-height: 20px;
    text-align: center;
    font-size: 0.9rem;
}

    .auth-message-area .error {
        color: #ff4d4f;
        background: rgba(255, 77, 79, 0.1);
        padding: 10px;
        border-radius: 8px;
        border: 1px solid rgba(255, 77, 79, 0.2);
    }

    .auth-message-area .loading {
        color: var(--primary);
    }
