/* login.css  */

.auth-box {
    width: 100%;
    max-width: 480px;
    margin: 3rem auto 2rem;
    padding: 2.5rem 2rem;
    background: rgba(30, 30, 46, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.auth-box h1 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
    background: linear-gradient(to right, #a78bfa, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-box .subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.875rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.remember {
    display: flex;
    align-items: center;
    margin: 1rem 0 1.5rem;
    font-size: 0.875rem;
    color: #cbd5e1;
}

.remember input {
    margin-right: 0.75rem;
    accent-color: #a78bfa;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, #6d28d9, #9333ea);
}

.switch {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.switch a {
    color: #a78bfa;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.switch a:hover {
    color: #c084fc;
    text-decoration: underline;
}