/* ─── Auth Pages ─────────────────────────────────────────────────────────── */

.auth-body {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #1565c0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    font-family: 'Inter', sans-serif;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.auth-form-wrapper .form-control {
    border-radius: 8px;
    border-color: #e0e0e0;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-form-wrapper .form-control:focus {
    border-color: #3949ab;
    box-shadow: 0 0 0 3px rgba(57,73,171,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border: none;
    border-radius: 8px;
    transition: opacity 0.2s, transform 0.1s;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
