/* ============================================================
   Overops — Split-Screen Login (Brand Guidelines v1.0)
   Navy #0d207c · Cream #fbfbce · DM Sans + Inter Tight
   ============================================================ */

/* ---------- Animations ---------- */
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, -80px) scale(0.95); }
  75% { transform: translate(40px, -30px) scale(1.05); }
}

@keyframes float-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 30px) scale(1.15); }
  66% { transform: translate(30px, 50px) scale(0.9); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--overops-font);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--overops-primary-dark);
  color: var(--overops-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   SPLIT CONTAINER
   ============================================================ */
.split-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* ============================================================
   LEFT PANEL — Navy brand panel
   ============================================================ */
.split-left {
  flex: 0 0 50%;
  background: linear-gradient(160deg, #060f3a 0%, var(--overops-primary) 50%, var(--overops-primary-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

/* Grid pattern */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(251, 251, 206, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 251, 206, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 70%);
  pointer-events: none;
}

/* Floating orbs */
.orb { position: absolute; border-radius: 50%; pointer-events: none; }

.orb-1 {
  width: 500px; height: 500px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(251, 251, 206, 0.05) 0%, transparent 70%);
  animation: float-orb 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -60px;
  background: radial-gradient(circle, rgba(251, 251, 206, 0.04) 0%, transparent 70%);
  animation: float-orb-2 25s ease-in-out infinite;
}

/* Left content */
.split-left-content {
  position: relative;
  z-index: 1;
  max-width: 460px;
  width: 100%;
  animation: fade-in 0.8s ease both;
}

/* Brand */
.brand-section {
  margin-bottom: 48px;
}

.brand-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
}

/* Hero */
.hero-section {
  margin-bottom: 48px;
  animation: slide-in-left 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--overops-accent);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--overops-font-body);
  color: rgba(251, 251, 206, 0.5);
  line-height: 1.7;
}

/* Features */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slide-in-left 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(251, 251, 206, 0.04);
  border: 1px solid rgba(251, 251, 206, 0.06);
  transition: all 0.25s ease;
}

.feature-item:hover {
  background: rgba(251, 251, 206, 0.07);
  border-color: rgba(251, 251, 206, 0.12);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(251, 251, 206, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg,
.feature-icon img {
  width: 20px; height: 20px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feature-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--overops-accent);
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 13px;
  font-weight: 400;
  font-family: var(--overops-font-body);
  color: rgba(251, 251, 206, 0.4);
  line-height: 1.5;
}

/* Left footer */
.left-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 251, 206, 0.08);
  animation: slide-in-left 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.left-footer span {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--overops-font-body);
  color: rgba(251, 251, 206, 0.25);
  letter-spacing: 0.04em;
}

/* ============================================================
   RIGHT PANEL — White clean form
   ============================================================ */
.split-right {
  flex: 0 0 50%;
  background: var(--overops-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 56px 40px;
  position: relative;
}

.split-right-content {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  animation: fade-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* Form header */
.form-header { margin-bottom: 36px; }

.form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--overops-primary);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* ---------- Form ---------- */
.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--overops-primary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--overops-font-body);
  color: var(--overops-primary);
  background: var(--overops-surface-secondary);
  border: 1.5px solid var(--overops-border);
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  line-height: 1.5;
}

.form-input:hover {
  border-color: #cbd5e1;
  background: var(--overops-surface);
}

.form-input:focus {
  border-color: var(--overops-primary);
  background: var(--overops-surface);
  box-shadow: 0 0 0 3px rgba(13, 32, 124, 0.08);
}

.form-input::placeholder {
  color: #b0bac9;
  font-weight: 400;
}

.input-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--overops-font-body);
  color: var(--overops-error);
}

/* Fallback input styles */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
.pf-c-form-control,
select.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--overops-font-body);
  color: var(--overops-primary);
  background: var(--overops-surface-secondary);
  border: 1.5px solid var(--overops-border);
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  line-height: 1.5;
}

input[type="text"]:hover, input[type="password"]:hover, input[type="email"]:hover,
.pf-c-form-control:hover { border-color: #cbd5e1; background: var(--overops-surface); }

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus,
.pf-c-form-control:focus { border-color: var(--overops-primary); background: var(--overops-surface); box-shadow: 0 0 0 3px rgba(13, 32, 124, 0.08); }

/* Password wrapper */
.password-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
}

.password-wrapper .form-input { padding-right: 48px; }

.password-toggle {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--overops-text-muted);
  border-radius: 8px;
  transition: all 0.15s ease;
}

.password-toggle:hover { color: var(--overops-primary); background: rgba(13, 32, 124, 0.04); }
.password-toggle.visible { color: var(--overops-primary); }
.eye-icon { width: 18px; height: 18px; }

/* Form options */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
}

.form-options:empty { display: none; }

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-family: var(--overops-font-body);
  color: var(--overops-text-secondary);
  cursor: pointer;
  font-size: 13px;
}

.remember-me input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--overops-primary);
  border-radius: 4px;
  cursor: pointer;
}

.form-options a {
  color: var(--overops-primary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.form-options a:hover { opacity: 0.7; }

/* ---------- Submit Button — Navy bg, cream text ---------- */
.form-actions { margin-top: 4px; }

.btn-submit {
  display: block;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--overops-font);
  color: var(--overops-primary);
  background: var(--overops-accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background: var(--overops-accent-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(13, 32, 124, 0.15);
}

/* Fallback button selectors */
input[type="submit"], button[type="submit"], .btn-primary,
.pf-c-button.pf-m-primary, #kc-login, #kc-register {
  display: block; width: 100%;
  padding: 14px 24px;
  font-size: 15px; font-weight: 600;
  font-family: var(--overops-font);
  color: var(--overops-primary);
  background: var(--overops-accent);
  border: none; border-radius: 10px;
  cursor: pointer; transition: all 0.2s ease;
  text-align: center; line-height: 1.4;
  position: relative; overflow: hidden;
}

input[type="submit"]:hover, button[type="submit"]:hover,
.btn-primary:hover, #kc-login:hover, #kc-register:hover {
  background: var(--overops-accent-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* ---------- Registration Link ---------- */
.registration-link {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  font-size: 14px;
  font-family: var(--overops-font-body);
  color: var(--overops-text-secondary);
}

.registration-link a {
  color: var(--overops-primary);
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
}

.registration-link a:hover { text-decoration: underline; }

/* ---------- Social Providers ---------- */
.social-providers { margin-top: 24px; }

.social-divider {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.social-divider::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: #f1f5f9;
}

.social-divider span {
  position: relative;
  background: var(--overops-surface);
  padding: 0 16px;
  font-size: 12px; font-weight: 500;
  color: var(--overops-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.social-list li { margin: 0; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px; font-weight: 600;
  color: var(--overops-primary);
  background: var(--overops-surface);
  border: 1.5px solid var(--overops-border);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover {
  border-color: var(--overops-primary);
  background: rgba(13, 32, 124, 0.02);
}

/* ---------- Alerts ---------- */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px; font-weight: 500;
  font-family: var(--overops-font-body);
  margin-bottom: 20px;
  line-height: 1.5;
}

.alert-error, .alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ---------- Form Footer ---------- */
.form-footer {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  text-align: center;
}

.form-footer span {
  font-size: 11px; font-weight: 500;
  font-family: var(--overops-font-body);
  color: var(--overops-text-muted);
  letter-spacing: 0.04em;
}

/* ---------- Links ---------- */
a {
  color: var(--overops-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

a:hover { opacity: 0.7; }

/* ---------- Labels (fallback) ---------- */
label, .pf-c-form__label, .control-label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--overops-primary);
  margin-bottom: 8px;
}

/* ---------- OTP Inputs ---------- */
.otp-tile-input, input.otp-input {
  width: 52px !important; height: 60px;
  text-align: center;
  font-size: 24px; font-weight: 700;
  font-family: var(--overops-font);
  border: 1.5px solid var(--overops-border);
  border-radius: 10px;
  margin: 0 5px;
  background: var(--overops-surface-secondary);
  transition: all 0.2s ease;
}

.otp-tile-input:focus, input.otp-input:focus {
  border-color: var(--overops-primary);
  background: var(--overops-surface);
  box-shadow: 0 0 0 3px rgba(13, 32, 124, 0.08);
  outline: none;
}

/* ============================================================
   REGISTER PAGE — Premium next-gen
   ============================================================ */
.register-subtitle {
  font-size: 14px;
  font-family: var(--overops-font-body);
  color: var(--overops-text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-group-half {
  flex: 1;
  min-width: 0;
}

.btn-register {
  background: var(--overops-primary) !important;
  color: var(--overops-accent) !important;
  font-size: 15px !important;
}

.btn-register:hover {
  background: var(--overops-primary-light) !important;
  box-shadow: 0 8px 24px rgba(13, 32, 124, 0.25) !important;
}

/* ============================================================
   VERIFY EMAIL PAGE
   ============================================================ */
.verify-email-container {
  text-align: center;
  padding: 8px 0;
}

.verify-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
}

.verify-icon-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(13, 32, 124, 0.06);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

.verify-icon {
  width: 56px;
  height: 56px;
  color: var(--overops-primary);
  position: relative;
  z-index: 1;
}

.verify-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--overops-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.verify-description {
  font-size: 14px;
  font-family: var(--overops-font-body);
  color: var(--overops-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.verify-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.verify-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--overops-radius-lg);
  background: var(--overops-surface-secondary);
  border: 1px solid var(--overops-border);
  font-size: 13px;
  font-family: var(--overops-font-body);
  color: var(--overops-text);
  transition: all 0.2s ease;
  animation: fade-up 0.4s ease both;
}

.verify-step:nth-child(1) { animation-delay: 0.1s; }
.verify-step:nth-child(2) { animation-delay: 0.2s; }
.verify-step:nth-child(3) { animation-delay: 0.3s; }

.verify-step:hover {
  background: var(--overops-surface);
  border-color: rgba(13, 32, 124, 0.15);
  transform: translateX(4px);
}

.verify-step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--overops-primary);
  color: var(--overops-accent);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--overops-font);
  display: flex;
  align-items: center;
  justify-content: center;
}

.verify-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--overops-radius);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  font-size: 12px;
  font-family: var(--overops-font-body);
  color: #1e40af;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 8px;
}

.verify-tip-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: #3b82f6;
}

.verify-actions {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.verify-resend-text {
  font-size: 13px;
  font-family: var(--overops-font-body);
  color: var(--overops-text-secondary);
  margin-bottom: 14px;
  line-height: 1.6;
}

.btn-resend {
  display: inline-block;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--overops-font);
  color: var(--overops-primary) !important;
  background: var(--overops-surface-secondary);
  border: 1.5px solid var(--overops-border);
  border-radius: var(--overops-radius);
  text-decoration: none !important;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-resend:hover {
  border-color: var(--overops-primary);
  background: rgba(13, 32, 124, 0.03);
  box-shadow: 0 4px 12px rgba(13, 32, 124, 0.08);
  transform: translateY(-1px);
  opacity: 1 !important;
}

.verify-back-link {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--overops-text-muted) !important;
}

.verify-back-link:hover {
  color: var(--overops-primary) !important;
}

/* ============================================================
   STATUS PAGES (logout, info, etc.)
   ============================================================ */
.status-page {
  padding: 8px 0;
  text-align: center;
}

.status-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--overops-primary);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 10px;
}

.status-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto 24px;
}

.status-badge--success {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  color: #16a34a;
}

.status-badge--warning {
  background: var(--overops-surface-secondary);
  border: 2px solid var(--overops-border);
  color: var(--overops-primary);
}

.status-subtitle {
  font-size: 14px;
  font-family: var(--overops-font-body);
  color: var(--overops-text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  margin-top: 0;
}

.btn-logout {
  background: var(--overops-primary) !important;
  color: var(--overops-accent) !important;
}

.btn-logout:hover {
  background: var(--overops-primary-light) !important;
  box-shadow: 0 8px 24px rgba(13, 32, 124, 0.25) !important;
}

.status-back-link {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--overops-text-muted) !important;
  text-decoration: none;
}

.status-back-link:hover {
  color: var(--overops-primary) !important;
}

/* ============================================================
   MFA PAGES (config + login OTP)
   ============================================================ */
.mfa-subtitle {
  font-size: 14px;
  font-family: var(--overops-font-body);
  color: var(--overops-text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.mfa-step {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--overops-border);
}

.mfa-step:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.mfa-step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--overops-primary);
  color: var(--overops-accent);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--overops-font);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.mfa-step-content {
  flex: 1;
  min-width: 0;
}

.mfa-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--overops-primary);
  margin: 0 0 8px;
  line-height: 1.5;
}

.mfa-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mfa-app-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-family: var(--overops-font-body);
  font-weight: 500;
  color: var(--overops-primary);
  background: var(--overops-surface-secondary);
  border: 1px solid var(--overops-border);
  border-radius: 6px;
}

.mfa-qr-wrapper {
  display: flex;
  justify-content: center;
  margin: 12px 0;
}

.mfa-qr-code {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  border: 2px solid var(--overops-border);
  padding: 8px;
  background: white;
}

.mfa-toggle-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--overops-primary) !important;
  margin-top: 4px;
}

.mfa-secret-key {
  padding: 10px 14px;
  background: var(--overops-surface-secondary);
  border: 1px solid var(--overops-border);
  border-radius: 8px;
  margin: 8px 0;
}

.mfa-secret-key code {
  font-size: 13px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--overops-primary);
  word-break: break-all;
  letter-spacing: 0.05em;
}

.mfa-details {
  margin-top: 12px;
}

.mfa-detail-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-family: var(--overops-font-body);
  color: var(--overops-text-secondary);
}

.btn-cancel {
  background: var(--overops-surface-secondary) !important;
  color: var(--overops-text-secondary) !important;
  border: 1.5px solid var(--overops-border) !important;
  margin-top: 8px;
}

.btn-cancel:hover {
  background: var(--overops-surface) !important;
  border-color: var(--overops-primary) !important;
  color: var(--overops-primary) !important;
  box-shadow: none !important;
}

.required {
  color: var(--overops-error);
  font-weight: 600;
}

/* MFA login - credential selector */
.mfa-credential-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.mfa-credential-item {
  display: block;
  cursor: pointer;
}

.mfa-credential-item input[type="radio"] {
  display: none;
}

.mfa-credential-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--overops-radius);
  border: 1.5px solid var(--overops-border);
  background: var(--overops-surface-secondary);
  font-size: 14px;
  font-weight: 500;
  color: var(--overops-primary);
  transition: all 0.15s ease;
}

.mfa-credential-item input[type="radio"]:checked + .mfa-credential-label {
  border-color: var(--overops-primary);
  background: rgba(13, 32, 124, 0.03);
  box-shadow: 0 0 0 3px rgba(13, 32, 124, 0.08);
}

.mfa-credential-label:hover {
  border-color: #cbd5e1;
}

.mfa-credential-icon {
  color: var(--overops-text-muted);
  display: flex;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .split-container { flex-direction: column; }
  .split-left { flex: none; padding: 40px 32px; }
  .split-left-content { max-width: 100%; }
  .hero-title { font-size: 28px; }
  .features-list { gap: 12px; }
  .split-right { flex: 1; padding: 40px 32px; }
  .split-right-content { max-width: 100%; }
  .form-footer { position: static; margin-top: 40px; }
}

@media (max-width: 640px) {
  .split-left { padding: 32px 24px; }
  .brand-section { margin-bottom: 32px; }
  .hero-section { margin-bottom: 32px; }
  .hero-title { font-size: 24px; }
  .hero-subtitle { font-size: 14px; }
  .feature-item { padding: 12px 16px; }
  .left-footer { margin-top: 32px; }
  .split-right { padding: 32px 24px; }
  .form-title { font-size: 20px; }
  .form-row { flex-direction: column; gap: 0; }
}
