/* =============================================
   LOGIN — css/login.css
   ============================================= */

body {
    background: linear-gradient(135deg, #e8f1f8 0%, #eef4fb 50%, #e4eef6 100%);
    min-height: 100vh;
}

.wrapper .container {
    background: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 36px 32px;
    max-width: 520px;
    margin: 0 auto;
}

.brand-logo {
    width: 140px;
    border-radius: 10%;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 12px;
    color: #aaa;
    font-size: 0.85rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.link-switch {
    color: #4A8EC2;
    text-decoration: none;
    font-weight: 500;
}

.link-switch:hover {
    color: #3A7099;
    text-decoration: underline;
}

.form-control:focus {
    border-color: #8BB8DA;
    box-shadow: 0 0 0 3px rgba(74, 142, 194, 0.15);
}