/* ==================================================================
   login.css
   Page-specific styling for login.php only. Shared split-panel
   layout lives in auth-shared.css — this file just adds what's
   unique to the sign-in form.
   ================================================================== */

.auth-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 13px;
}

.remember-me-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--auth-text-muted);
    cursor: pointer;
}

.remember-me-check input {
    cursor: pointer;
}

.forgot-link {
    color: var(--auth-primary);
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}
