/* Dahusoft — AI-powered login screen */
.login-auth-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login-auth-root:has(> .login-page),
.login-auth-root:has(> .password-reset-page) {
  background: linear-gradient(135deg, #fff8f3 0%, #f0f7ff 48%, #f5f0ff 100%);
}

.login-auth-root:not(:has(.login-page)) {
  background: #f4f6fa;
}

.login-auth-root:not(:has(.login-page)) .login-auth-footer .text-muted,
.login-auth-root:not(:has(.login-page)) .login-auth-footer a.text-muted {
  color: #7e8299 !important;
}

.login-auth-root:not(:has(.login-page)) .login-auth-footer a.text-muted:hover {
  color: #f97316 !important;
}

.login-page {
  display: flex;
  flex: 1;
  width: 100%;
  font-size: 1.2rem;
}

.login-page-hero {
  position: relative;
  flex: 1 1 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem 3rem 4rem;
  overflow: hidden;
  color: #181c32;
  background:
    radial-gradient(ellipse 70% 55% at 15% 25%, rgba(255, 183, 120, 0.45) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 85% 70%, rgba(125, 180, 255, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 60% 15%, rgba(196, 167, 255, 0.28) 0%, transparent 50%),
    linear-gradient(155deg, #fff5eb 0%, #eef6ff 42%, #f3eeff 100%);
}

.login-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 132, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 85%);
  pointer-events: none;
}

.login-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.login-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #c2410c;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
}

.login-page-badge i {
  font-size: 1.85rem;
}

.login-page-title {
  margin: 0 0 1rem;
  font-size: clamp(2.85rem, 4.8vw, 4.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #181c32;
}

.login-page-title span {
  background: linear-gradient(90deg, #ea580c 0%, #f97316 45%, #1b84ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-page-lead {
  margin: 0 0 2rem;
  font-size: 1.65rem;
  line-height: 1.65;
  color: #3f4254;
  max-width: 580px;
}

.login-page-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.login-page-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(27, 132, 255, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.login-page-feature:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.1);
}

.login-page-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  font-size: 2rem;
  background: linear-gradient(135deg, #fff4e5 0%, #eef6ff 100%);
  color: #ea580c;
}

.login-page-feature-text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #181c32;
}

.login-page-feature-text span {
  font-size: 1.3rem;
  color: #4b5675;
  line-height: 1.5;
}

.login-page-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.login-page-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: login-orb-float 12s ease-in-out infinite;
}

.login-page-orb--1 {
  width: 300px;
  height: 300px;
  top: 8%;
  right: 6%;
  background: #ffb86a;
  animation-delay: 0s;
}

.login-page-orb--2 {
  width: 240px;
  height: 240px;
  bottom: 18%;
  right: 22%;
  background: #7ec8ff;
  animation-delay: -4s;
}

.login-page-orb--3 {
  width: 200px;
  height: 200px;
  top: 52%;
  left: 4%;
  background: #c4b5fd;
  animation-delay: -8s;
}

@keyframes login-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.05); }
  66% { transform: translate(-8px, 10px) scale(0.95); }
}

.login-page-cards {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 1;
}

@media (min-width: 1200px) {
  .login-page-cards {
    display: flex;
  }
}

.login-page-float-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  min-width: 250px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #3f4254;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(27, 132, 255, 0.1);
  animation: login-card-float 6s ease-in-out infinite;
}

.login-page-float-card:nth-child(2) { animation-delay: -2s; margin-left: 1.5rem; }
.login-page-float-card:nth-child(3) { animation-delay: -4s; margin-left: 0.5rem; }

.login-page-float-card i {
  font-size: 1.75rem;
  color: #4ade80;
}

.login-page-float-card i.bi-truck { color: #60a5fa; }
.login-page-float-card i.bi-graph-up { color: #fb923c; }

@keyframes login-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.login-page-form-panel {
  flex: 0 0 44%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: -8px 0 40px rgba(27, 132, 255, 0.08);
  backdrop-filter: blur(12px);
}

.login-page-form-wrap {
  width: 100%;
  max-width: 460px;
}

.login-page-logo {
  display: block;
  margin-bottom: 2rem;
  text-align: center;
}

.login-page-logo img {
  height: 72px;
  width: auto;
}

.login-page-form-title {
  margin: 0 0 0.4rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #181c32;
  text-align: center;
}

.login-page-form-subtitle {
  margin: 0 0 1.75rem;
  font-size: 1.25rem;
  color: #5e6278;
  text-align: center;
  line-height: 1.55;
}

.login-page-form .form-label {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: #181c32;
  margin-bottom: 0.4rem;
}

.login-page-form .form-control {
  min-height: 56px;
  font-size: 1.2rem !important;
  border-radius: 10px !important;
  border-color: #e4e6ef !important;
  background: #f9fafb !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.login-page-form .form-control:focus {
  border-color: #f97316 !important;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15) !important;
  background: #fff !important;
}

.login-page-password-wrap {
  position: relative;
}

.login-page-password-wrap .form-control {
  padding-right: 2.75rem;
}

.login-page-password-wrap [name="showHide"] {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #7e8299;
  font-size: 1.65rem;
  z-index: 2;
  transition: color 0.15s ease;
}

.login-page-password-wrap [name="showHide"]:hover {
  color: #f97316;
}

.login-page-forgot {
  color: #ea580c !important;
  font-size: 1.1rem !important;
  font-weight: 600;
  text-decoration: none;
}

.login-page-forgot:hover {
  color: #ea580c !important;
}

.login-page-btn-icon {
  font-size: 2.75rem;
  line-height: 1;
  margin-right: 0.75rem;
  vertical-align: -0.08em;
}

.login-page-submit,
.login-page-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.login-page-submit {
  min-height: 56px;
  font-size: 1.25rem !important;
  font-weight: 600;
  border-radius: 10px !important;
  background: #fff4e5 !important;
  border: 1px solid #ffd8a8 !important;
  color: #c2410c !important;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.login-page-submit:hover:not(:disabled) {
  background: #ffedd5 !important;
  border-color: #fdba74 !important;
  color: #9a3412 !important;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.12);
}

.login-page-submit:active:not(:disabled) {
  background: #ffe8cc !important;
}

.login-page-submit .login-page-btn-icon {
  color: #ea580c;
  opacity: 0.85;
}

.login-page-register {
  min-height: 56px;
  font-size: 1.25rem !important;
  font-weight: 600;
  border-radius: 10px !important;
  background: #ecfdf5 !important;
  border: 1px solid #a7f3d0 !important;
  color: #166534 !important;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.08);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.login-page-register:hover {
  background: #d1fae5 !important;
  border-color: #6ee7b7 !important;
  color: #14532d !important;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.12);
}

.login-page-register:active {
  background: #bbf7d0 !important;
}

.login-page-register .login-page-btn-icon {
  color: #16a34a;
  opacity: 0.9;
}

.login-page-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  font-size: 1.1rem;
  color: #7e8299;
}

.login-page-divider::before,
.login-page-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e4e6ef;
}

.login-auth-footer {
  position: relative;
  z-index: 2;
  padding: 1rem 1.5rem 1.5rem;
  background: transparent;
  font-size: 1.1rem;
}

.login-auth-footer a,
.login-auth-footer .fw-semibold {
  font-size: 1.1rem !important;
}

.login-auth-root:has(> .login-page) .login-auth-footer .text-muted,
.login-auth-root:has(> .password-reset-page) .login-auth-footer .text-muted {
  color: #7e8299 !important;
}

.login-auth-root:has(> .login-page) .login-auth-footer a.text-muted,
.login-auth-root:has(> .password-reset-page) .login-auth-footer a.text-muted {
  color: #5e6278 !important;
}

.login-auth-root:has(> .login-page) .login-auth-footer a.text-muted:hover,
.login-auth-root:has(> .password-reset-page) .login-auth-footer a.text-muted:hover {
  color: #f97316 !important;
}

@media (max-width: 991.98px) {
  .login-page {
    flex-direction: column;
  }

  .login-page-hero {
    flex: none;
    padding: 2.5rem 1.75rem 2rem;
    min-height: auto;
  }

  .login-page-hero-inner {
    max-width: none;
  }

  .login-page-title {
    font-size: 2.65rem;
  }

  .login-page-lead {
    font-size: 1.45rem;
  }

  .login-page-badge {
    font-size: 1.2rem;
  }

  .login-page-form-title {
    font-size: 2rem;
  }

  .login-page-form-subtitle {
    font-size: 1.15rem;
  }

  .login-page-features {
    display: none;
  }

  .login-page-form-panel {
    flex: 1;
    max-width: none;
    width: 100%;
    padding: 2rem 1.5rem 2.5rem;
    border-left: none;
    box-shadow: 0 -8px 32px rgba(27, 132, 255, 0.08);
    border-radius: 24px 24px 0 0;
    margin-top: -1rem;
  }
}

@media (max-width: 575.98px) {
  .login-page-hero {
    padding: 2rem 1.25rem 1.5rem;
  }

  .login-page-form-panel {
    padding: 1.75rem 1.25rem 2rem;
  }

  .login-page-logo img {
    height: 56px;
  }
}

.login-auth-footer .lang-switcher {
  flex-wrap: wrap;
  justify-content: center;
}

html[dir="rtl"] .login-page {
  flex-direction: row-reverse;
}

html[dir="rtl"] .login-page-form-panel {
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 8px 0 40px rgba(27, 132, 255, 0.08);
}

html[dir="rtl"] .login-page-btn-icon {
  margin-right: 0;
  margin-left: 0.75rem;
}

html[dir="rtl"] .login-page-password-wrap .form-control {
  padding-right: 0.85rem;
  padding-left: 2.75rem;
}

html[dir="rtl"] .login-page-password-wrap [name="showHide"] {
  right: auto;
  left: 0.85rem;
}

html[dir="rtl"] .login-page-float-card:nth-child(2) {
  margin-left: 0;
  margin-right: 1.5rem;
}

html[dir="rtl"] .login-page-float-card:nth-child(3) {
  margin-left: 0;
  margin-right: 0.5rem;
}

html[dir="rtl"] .login-page-cards {
  right: auto;
  left: 2rem;
}

@media (max-width: 991.98px) {
  html[dir="rtl"] .login-page {
    flex-direction: column;
  }

  html[dir="rtl"] .login-page-form-panel {
    border-right: none;
    box-shadow: 0 -8px 32px rgba(27, 132, 255, 0.08);
  }
}

/* —— Password reset (DemandPasswordReset) —— */
.password-reset-page {
  display: flex;
  flex: 1;
  width: 100%;
  font-size: 1.2rem;
}

.password-reset-hero {
  position: relative;
  flex: 1 1 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem 3rem 4rem;
  overflow: hidden;
  color: #181c32;
  background:
    radial-gradient(ellipse 70% 55% at 15% 25%, rgba(255, 183, 120, 0.45) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 85% 70%, rgba(125, 180, 255, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 60% 15%, rgba(196, 167, 255, 0.28) 0%, transparent 50%),
    linear-gradient(155deg, #fff5eb 0%, #eef6ff 42%, #f3eeff 100%);
}

.password-reset-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 132, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 85%);
  pointer-events: none;
}

.password-reset-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.password-reset-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}

.password-reset-badge i {
  font-size: 1.45rem;
}

.password-reset-title {
  margin: 0 0 1rem;
  font-size: clamp(2.85rem, 4.8vw, 4.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #181c32;
}

.password-reset-title span {
  background: linear-gradient(90deg, #2563eb 0%, #1b84ff 55%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.password-reset-lead {
  margin: 0 0 2rem;
  font-size: 1.65rem;
  line-height: 1.65;
  color: #3f4254;
  max-width: 580px;
}

.password-reset-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.password-reset-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(27, 132, 255, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.password-reset-step:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

.password-reset-step-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  font-size: 1.55rem;
  background: linear-gradient(135deg, #eef6ff 0%, #f5f3ff 100%);
  color: #2563eb;
}

.password-reset-step-text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #181c32;
}

.password-reset-step-text span {
  font-size: 1.3rem;
  color: #4b5675;
  line-height: 1.5;
}

.password-reset-form-panel {
  flex: 0 0 44%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: -8px 0 40px rgba(27, 132, 255, 0.08);
  backdrop-filter: blur(12px);
}

.password-reset-form-wrap {
  width: 100%;
  max-width: 460px;
}

.password-reset-form-title {
  margin: 0 0 0.4rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #181c32;
  text-align: center;
}

.password-reset-form-subtitle {
  margin: 0 0 1.75rem;
  font-size: 1.25rem;
  color: #5e6278;
  text-align: center;
  line-height: 1.55;
}

.password-reset-form .form-label {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: #181c32;
  margin-bottom: 0.4rem;
}

.password-reset-email-wrap {
  position: relative;
}

.password-reset-email-wrap .form-control {
  min-height: 56px;
  padding-left: 2.85rem;
  font-size: 1.2rem !important;
  border-radius: 10px !important;
  border-color: #e4e6ef !important;
  background: #f9fafb !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.password-reset-email-wrap .form-control:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
  background: #fff !important;
}

.password-reset-field-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: #7e8299;
  pointer-events: none;
  z-index: 2;
}

.password-reset-btn-icon {
  flex-shrink: 0;
  font-size: 2.75rem;
  line-height: 1;
  margin-right: 0.75rem;
  vertical-align: -0.08em;
}

.password-reset-submit .indicator-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.password-reset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.password-reset-submit,
.password-reset-cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  font-size: 1.25rem !important;
  font-weight: 600;
  border-radius: 10px !important;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.password-reset-submit {
  background: #eef6ff !important;
  border: 1px solid #bfdbfe !important;
  color: #1d4ed8 !important;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

.password-reset-submit:hover:not(:disabled) {
  background: #dbeafe !important;
  border-color: #93c5fd !important;
  color: #1e40af !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
}

.password-reset-submit:active:not(:disabled) {
  background: #bfdbfe !important;
}

.password-reset-submit .password-reset-btn-icon {
  color: #2563eb;
  opacity: 0.9;
}

.password-reset-cancel {
  background: #fff5f8 !important;
  border: 1px solid #f5d0da !important;
  color: #d9214e !important;
  box-shadow: 0 2px 8px rgba(217, 33, 78, 0.08);
  text-decoration: none;
}

.password-reset-cancel:hover {
  background: #ffeef3 !important;
  border-color: #f1b0c0 !important;
  color: #b91c1c !important;
  box-shadow: 0 4px 12px rgba(217, 33, 78, 0.12);
}

.password-reset-cancel:active {
  background: #fce7f3 !important;
}

.password-reset-cancel .password-reset-btn-icon {
  color: #e11d48;
  opacity: 0.9;
}

html[dir="rtl"] .password-reset-page {
  flex-direction: row-reverse;
}

html[dir="rtl"] .password-reset-form-panel {
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 8px 0 40px rgba(27, 132, 255, 0.08);
}

html[dir="rtl"] .password-reset-btn-icon {
  margin-right: 0;
  margin-left: 0.75rem;
}

html[dir="rtl"] .password-reset-email-wrap .form-control {
  padding-left: 0.85rem;
  padding-right: 2.85rem;
}

html[dir="rtl"] .password-reset-field-icon {
  left: auto;
  right: 0.95rem;
}

@media (max-width: 991.98px) {
  .password-reset-page {
    flex-direction: column;
  }

  .password-reset-hero {
    flex: none;
    padding: 2.5rem 1.75rem 2rem;
    min-height: auto;
  }

  .password-reset-hero-inner {
    max-width: none;
  }

  .password-reset-title {
    font-size: 2.65rem;
  }

  .password-reset-lead {
    font-size: 1.45rem;
  }

  .password-reset-badge {
    font-size: 1.2rem;
  }

  .password-reset-form-title {
    font-size: 2rem;
  }

  .password-reset-form-subtitle {
    font-size: 1.15rem;
  }

  .password-reset-steps {
    display: none;
  }

  .password-reset-form-panel {
    flex: 1;
    max-width: none;
    width: 100%;
    padding: 2rem 1.5rem 2.5rem;
    border-left: none;
    box-shadow: 0 -8px 32px rgba(27, 132, 255, 0.08);
    border-radius: 24px 24px 0 0;
    margin-top: -1rem;
  }

  html[dir="rtl"] .password-reset-page {
    flex-direction: column;
  }

  html[dir="rtl"] .password-reset-form-panel {
    border-right: none;
    box-shadow: 0 -8px 32px rgba(27, 132, 255, 0.08);
  }
}

@media (max-width: 575.98px) {
  .password-reset-hero {
    padding: 2rem 1.25rem 1.5rem;
  }

  .password-reset-form-panel {
    padding: 1.75rem 1.25rem 2rem;
  }

  .password-reset-actions {
    flex-direction: column;
  }
}
