.auth-body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at 12% 16%, rgba(14, 116, 144, 0.2), transparent 28%), radial-gradient(circle at 86% 8%, rgba(245, 158, 11, 0.18), transparent 24%), linear-gradient(135deg, #eef7fb 0%, #f8fafc 48%, #fff7ed 100%);
  color: var(--frontend-shell-text);
  font-family: "Manrope", sans-serif;
}

.auth-app {
  min-height: 100vh;
}

.auth-language-switch {
  position: fixed;
  top: clamp(0.85rem, 2vw, 1.35rem);
  right: clamp(0.85rem, 2vw, 1.35rem);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
}

.auth-language-switch__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.35rem 0 0.5rem;
  color: var(--frontend-shell-muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.auth-language-switch__options {
  display: inline-flex;
  gap: 0.25rem;
}

.auth-language-switch__options a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--frontend-shell-text);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.auth-language-switch__options a:hover,
.auth-language-switch__options a:focus-visible,
.auth-language-switch__options a.is-active {
  background: var(--frontend-shell-primary);
  color: #0057d7;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
  outline: none;
  transform: translateY(-1px);
}

.auth-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1rem, 2vw, 2rem);
  overflow: hidden;
}

.auth-shell::before,
.auth-shell::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  content: "";
  filter: blur(3px);
  opacity: 0.6;
}

.auth-shell::before {
  left: -120px;
  bottom: -150px;
  background: rgba(14, 116, 144, 0.12);
}

.auth-shell::after {
  top: -170px;
  right: -130px;
  background: rgba(249, 115, 22, 0.13);
}

.auth-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  width: min(1120px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(20px);
}

.auth-panel__story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 660px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 95, 168, 0.78), rgba(14, 116, 144, 0.88)), url("/images/hero/luxury_transport.jpg") center/cover;
  color: #fff;
}

.auth-panel__story::after {
  position: absolute;
  inset: auto -80px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.auth-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  text-decoration: none;
  justify-content: space-between;
}

.auth-brand img {
  width: 132px;
  max-width: 42vw;
  height: auto;
  max-height: 58px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.45rem;
}

.auth-brand span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
}

.auth-story-copy {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.auth-story-copy__eyebrow,
.auth-form-card__eyebrow {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.42rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-story-copy__eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.auth-story-copy h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.95;
}

.auth-story-copy p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.8;
}

.auth-trust-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}

.auth-trust-list i {
  color: #fbbf24;
}

.auth-panel__form {
  display: grid;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.auth-form-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.auth-form-card__eyebrow {
  background: var(--frontend-shell-primary-soft);
  color: var(--frontend-shell-primary);
}

.auth-form-card h2 {
  margin: 0;
  color: var(--frontend-shell-text);
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.auth-form-card__lead {
  margin: 0.75rem 0 1.4rem;
  color: var(--frontend-shell-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.auth-alert {
  margin-bottom: 1rem;
  border-radius: 18px;
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-field label,
.auth-check label {
  color: var(--frontend-shell-text);
  font-size: 0.85rem;
  font-weight: 800;
}

.auth-field .form-control {
  min-height: 52px;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--frontend-shell-text);
  font-weight: 700;
}

.auth-field .form-control:focus {
  border-color: rgba(14, 116, 144, 0.46);
  box-shadow: 0 0 0 0.22rem rgba(14, 116, 144, 0.13);
}

.auth-password-field {
  position: relative;
}

.auth-password-field .form-control {
  padding-right: 3.25rem;
}

.auth-password-toggle {
  position: absolute;
  right: 0.55rem;
  bottom: 0.45rem;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--frontend-shell-primary-soft);
  color: var(--frontend-shell-primary);
}

.auth-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--frontend-shell-muted);
  font-weight: 700;
}

.auth-check input {
  width: 1.05rem;
  height: 1.05rem;
}

.auth-link {
  color: var(--frontend-shell-primary);
  font-weight: 900;
  text-decoration: none;
}

.auth-link:hover,
.auth-link:focus {
  color: #008ab5;
}

.auth-submit {
  min-height: 52px;
  border-radius: 16px;
  font-weight: 900;
}

.auth-divider {
  margin: 1.35rem 0;
  border-top: 1px solid #e2e8f0;
}

.auth-switch {
  margin: 0;
  color: var(--frontend-shell-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: center;
}

.auth-security-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 1.2rem;
  padding: 0.9rem;
  border: 1px solid #bae6fd;
  border-radius: 18px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  color: #334155;
  font-size: 0.84rem;
  line-height: 1.6;
}

.auth-security-note i {
  color: var(--frontend-shell-primary);
  margin-top: 0.2rem;
}

.auth-footer-link {
  margin-top: 1.25rem;
  text-align: center;
}

@media (max-width: 991.98px) {
  .auth-panel {
    grid-template-columns: 1fr;
  }
  .auth-panel__story {
    min-height: auto;
    gap: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .auth-language-switch {
    right: 50%;
    max-width: calc(100vw - 1.5rem);
    transform: translateX(50%);
  }
  .auth-language-switch__label {
    display: none;
  }
  .auth-language-switch__options {
    overflow-x: auto;
  }
  .auth-shell {
    padding: 0;
  }
  .auth-panel {
    min-height: 100vh;
    border-radius: 0;
  }
  .auth-panel__form {
    padding: 1.25rem;
  }
}
