.reset-subtitle { color: #6b7280; margin-bottom: 24px; }
.reset-actions { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.login-left { position: relative; }
.login-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 5;
}
.login-loading-overlay.active { display: flex; }
.login-loading-spinner {
    width: 46px;
    height: 46px;
    border: 4px solid #e5e7eb;
    border-top-color: #17726e;
    border-radius: 50%;
    animation: loginSpin 1s linear infinite;
    margin-bottom: 12px;
}
@keyframes loginSpin { to { transform: rotate(360deg); } }
.auth-alert {
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    border: 1px solid transparent;
}
.auth-alert i { font-size: 16px; }
.auth-alert.success { background: #e8f5e9; color: #1b5e20; border-color: #c8e6c9; }
.auth-alert.error { background: #fdecea; color: #b71c1c; border-color: #f5c6cb; }
