/**
 * Geesto — premium SaaS auth (60/40, product-value branding, form card).
 * Compatible with Material theme (btn-info, form-material). Scoped + #reloginModal.
 */

.auth-split-layout {
  --auth-blue-950: #0c1929;
  --auth-blue-900: #0f172a;
  --auth-blue-800: #1e3a8a;
  --auth-blue-700: #1d4ed8;
  --auth-blue-600: #2563eb;
  --auth-blue-500: #3b82f6;
  --auth-sky-500: #0ea5e9;
  --auth-sky-400: #38bdf8;
  --auth-page-bg: #f1f5f9;
  --auth-card-bg: #ffffff;
  --auth-text: #0f172a;
  --auth-text-muted: #64748b;
  --auth-border: #e2e8f0;
  --auth-radius-panel: 16px;
  --auth-radius-input: 10px;
  --auth-radius-btn: 10px;
  --auth-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --auth-transition-slow: 0.32s cubic-bezier(0.4, 0, 0.2, 1);

  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  animation: auth-layout-fade-in 0.55s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .auth-split-layout {
    opacity: 1;
    animation: none;
  }
}

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

.logged-out body #main-wrapper:has(.auth-split-layout) {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 100vh;
  overflow: visible;
}

/* -------------------------------------------------------------------------
   Brand column (60%)
   ------------------------------------------------------------------------- */
.auth-split-layout__brand {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3.25rem);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: radial-gradient(ellipse 90% 70% at 50% 36%, rgba(255, 255, 255, 0.14), transparent 62%),
    radial-gradient(circle at 100% 8%, rgba(56, 189, 248, 0.22), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(37, 99, 235, 0.35), transparent 48%),
    linear-gradient(165deg, var(--auth-blue-950) 0%, var(--auth-blue-900) 18%, var(--auth-blue-800) 42%, var(--auth-blue-700) 72%, var(--auth-sky-500) 100%);
}

.auth-split-layout__brand-shimmer {
  position: absolute;
  inset: -40% -25%;
  z-index: 0;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  background-size: 240% 240%;
  animation: auth-brand-shimmer 16s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .auth-split-layout__brand-shimmer {
    animation: none;
    opacity: 0.4;
  }
}

@keyframes auth-brand-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.auth-split-layout__brand-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.auth-split-layout__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.5;
  animation: auth-orb-drift 20s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .auth-split-layout__orb {
    animation: none;
  }
}

.auth-split-layout__orb--1 {
  width: min(44vw, 340px);
  height: min(44vw, 340px);
  top: -12%;
  left: -8%;
  background: rgba(96, 165, 250, 0.4);
}

.auth-split-layout__orb--2 {
  width: min(38vw, 280px);
  height: min(38vw, 280px);
  bottom: 0;
  right: -6%;
  background: rgba(34, 211, 238, 0.35);
  animation-delay: -7s;
}

.auth-split-layout__orb--3 {
  width: min(30vw, 220px);
  height: min(30vw, 220px);
  top: 42%;
  right: 12%;
  background: rgba(255, 255, 255, 0.1);
  animation-delay: -14s;
}

.auth-split-layout__orb--4 {
  width: min(24vw, 180px);
  height: min(24vw, 180px);
  bottom: 28%;
  left: 8%;
  background: rgba(59, 130, 246, 0.3);
  animation-delay: -10s;
}

@keyframes auth-orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, 2%) scale(1.05);
  }
  66% {
    transform: translate(-3%, 4%) scale(0.97);
  }
}

.auth-split-layout__brand-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  max-width: 36rem;
  opacity: 0;
  transform: translateY(10px);
  animation: auth-block-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .auth-split-layout__brand-content {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes auth-block-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-split-layout__brand-header {
  flex-shrink: 0;
  text-align: left;
}

.auth-split-layout__logo-link {
  display: inline-block;
  margin-bottom: clamp(1.5rem, 4vh, 2.25rem);
  line-height: 0;
  border-radius: 12px;
  transition: transform var(--auth-transition), opacity var(--auth-transition);
}

.auth-split-layout__logo-link:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.auth-split-layout__logo-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.auth-split-layout__logo {
  display: block;
  width: auto;
  max-width: min(200px, 42vw);
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.auth-split-layout__brand-headline {
  margin: 0 0 1rem;
  max-width: 22rem;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.auth-split-layout__brand-sub {
  margin: 0;
  max-width: 26rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

/* Product mock — subtle, “real app” feel */
.auth-split-layout__mock {
  flex: 1;
  position: relative;
  margin-top: clamp(1.5rem, 4vh, 2.5rem);
  min-height: 180px;
  pointer-events: none;
}

.auth-mock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  transform-origin: bottom left;
  transform: scale(0.94) translateY(4%);
  opacity: 0.48;
  filter: saturate(0.92);
  animation: auth-mock-float 12s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .auth-mock {
    animation: none;
    opacity: 0.44;
  }
}

@keyframes auth-mock-float {
  0%,
  100% {
    transform: scale(0.94) translateY(4%);
  }
  50% {
    transform: scale(0.96) translateY(0%);
  }
}

.auth-mock__window {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.auth-mock__titlebar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-mock__dots {
  display: flex;
  gap: 5px;
}

.auth-mock__dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.auth-mock__dots i:first-child {
  background: rgba(248, 113, 113, 0.55);
}
.auth-mock__dots i:nth-child(2) {
  background: rgba(251, 191, 36, 0.55);
}
.auth-mock__dots i:nth-child(3) {
  background: rgba(74, 222, 128, 0.45);
}

.auth-mock__title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.auth-mock__body {
  display: flex;
  min-height: 168px;
}

.auth-mock__sidebar {
  width: 22%;
  min-width: 52px;
  padding: 0.65rem 0.5rem;
  background: rgba(0, 0, 0, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.auth-mock__nav-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.auth-mock__nav-line--short {
  width: 55%;
}

.auth-mock__nav-line--medium {
  width: 78%;
}

.auth-mock__main {
  flex: 1;
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.auth-mock__stats {
  display: flex;
  gap: 0.5rem;
}

.auth-mock__stat {
  flex: 1;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-mock__stat-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}

.auth-mock__stat-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.auth-mock__card {
  flex: 1;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-mock__card-head {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.45rem;
}

.auth-mock__task {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-mock__task:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.auth-mock__check {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(52, 211, 153, 0.45);
  border: 1px solid rgba(167, 243, 208, 0.5);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.auth-mock__check--off {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.auth-mock__task-text {
  font-size: 0.6875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.auth-mock__float {
  position: absolute;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.auth-mock__float--a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.65rem;
  right: -2%;
  top: 18%;
  animation: auth-float-a 10s ease-in-out infinite;
}

.auth-mock__float--b {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.55rem 0.65rem;
  left: -4%;
  bottom: 8%;
  animation: auth-float-b 11s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .auth-mock__float--a,
  .auth-mock__float--b {
    animation: none;
  }
}

@keyframes auth-float-a {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

.auth-mock__float-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.8), rgba(56, 189, 248, 0.6));
}

.auth-mock__float-text {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.auth-mock__pill {
  height: 6px;
  width: 48px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
}

.auth-mock__pill--wide {
  width: 72px;
  background: rgba(255, 255, 255, 0.14);
}

/* -------------------------------------------------------------------------
   Form side (40%) — premium card
   ------------------------------------------------------------------------- */
.auth-split-layout__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  max-height: 100vh;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 3.5vw, 2.75rem);
  background: var(--auth-page-bg);
  overflow-y: auto;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.auth-split-layout__panel {
  width: 100%;
  max-width: 440px;
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.75rem, 3vw, 2.5rem);
  background: var(--auth-card-bg);
  border-radius: var(--auth-radius-panel);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px -8px rgba(15, 23, 42, 0.1), 0 32px 64px -16px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: translateY(12px);
  animation: auth-block-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .auth-split-layout__panel {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.auth-split-layout__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--auth-text);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.auth-split-layout__subtitle {
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--auth-text-muted);
}

.auth-field {
  margin-bottom: 1.25rem;
}

.auth-field__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--auth-text);
  letter-spacing: 0.015em;
}

.auth-field__input {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 0.8125rem 1rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--auth-text);
  background: #fff;
  border: 1px solid var(--auth-border);
  border-radius: var(--auth-radius-input);
  transition: border-color var(--auth-transition), box-shadow var(--auth-transition-slow), background-color 0.2s ease;
}

.auth-field__input::placeholder {
  color: #94a3b8;
}

.auth-field__input:hover {
  border-color: #cbd5e1;
}

.auth-field__input:focus {
  outline: none;
  border-color: var(--auth-blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.auth-field__input.error,
.auth-split-form input.error {
  border-color: #dc2626;
}

label.auth-field__error,
.auth-split-form label.error {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #dc2626;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--auth-text);
  user-select: none;
}

/* Tema global esconde [type=checkbox] (Material espera input+label). Aqui o markup é label>input+span. */
.auth-split-layout .auth-checkbox input[type="checkbox"] {
  position: static;
  left: auto;
  opacity: 1;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--auth-blue-600);
  cursor: pointer;
}

.auth-split-layout .auth-checkbox--legal {
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.auth-split-layout .auth-checkbox--legal span {
  font-weight: 400;
  color: var(--auth-text-muted);
  line-height: 1.5;
}

.auth-split-layout .auth-checkbox--legal span a {
  font-weight: 600;
  color: var(--auth-blue-600);
  text-decoration: none;
}

.auth-split-layout .auth-checkbox--legal span a:hover {
  color: var(--auth-blue-700);
  text-decoration: underline;
}

/* Erro no checkbox legal — alinhado aos .auth-field__input.error (jQuery Validate + redirect com erros) */
.auth-split-layout .auth-checkbox--legal:has(> input[type="checkbox"].error),
.auth-split-layout .auth-checkbox--legal.auth-checkbox--error {
  padding: 0.65rem 0.75rem;
  border-radius: var(--auth-radius-input);
  border: 1px solid #dc2626;
  background: #fef2f2;
}

.auth-split-layout .auth-checkbox--legal:has(> input[type="checkbox"].error) span,
.auth-split-layout .auth-checkbox--legal.auth-checkbox--error span {
  color: #991b1b;
}

.auth-split-layout .auth-checkbox--legal:has(> input[type="checkbox"].error) span a,
.auth-split-layout .auth-checkbox--legal.auth-checkbox--error span a {
  color: #b91c1c;
}

.auth-split-layout .auth-checkbox--legal > input[type="checkbox"].error {
  outline: 2px solid rgba(220, 38, 38, 0.5);
  outline-offset: 2px;
}

.auth-split-layout label.auth-checkbox--legal + label.error {
  display: block;
  margin: 0 0 1rem;
  padding-left: 0.15rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #dc2626;
}

.auth-split-layout__row-between {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1.125rem;
}

.auth-split-layout__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--auth-blue-600);
  text-decoration: none;
  transition: color var(--auth-transition);
}

.auth-split-layout__link:hover {
  color: var(--auth-blue-700);
  text-decoration: underline;
}

.auth-split-layout__submit {
  width: 100%;
  min-height: 52px;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff !important;
  border: none !important;
  border-radius: var(--auth-radius-btn) !important;
  background: linear-gradient(135deg, var(--auth-blue-700), var(--auth-blue-600) 45%, var(--auth-blue-500)) !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.28), 0 8px 24px -4px rgba(37, 99, 235, 0.35);
  transition: transform var(--auth-transition), box-shadow var(--auth-transition-slow), filter var(--auth-transition);
}

.auth-split-layout__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.38), 0 4px 12px rgba(37, 99, 235, 0.2);
  filter: brightness(1.03);
}

.auth-split-layout__submit:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.auth-split-layout__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35), 0 12px 28px rgba(37, 99, 235, 0.35);
}

.auth-split-layout__submit.button-loading-annimation {
  pointer-events: none;
  opacity: 0.9;
}

.auth-split-layout__footer {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--auth-text-muted);
}

.auth-split-layout__footer a {
  font-weight: 600;
  color: var(--auth-blue-600);
  text-decoration: none;
}

.auth-split-layout__footer a:hover {
  color: var(--auth-blue-700);
  text-decoration: underline;
}

.auth-split-layout__legal {
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--auth-border);
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--auth-text-muted);
}

.auth-split-layout__legal a {
  font-weight: 400;
  color: var(--auth-text-muted);
  text-decoration: none;
}

.auth-split-layout__legal a:hover {
  color: var(--auth-blue-700);
  text-decoration: underline;
}

.auth-split-layout__alert {
  margin: 0 0 1.35rem;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--auth-radius-input);
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.auth-split-layout__alert ul {
  margin: 0;
  padding-left: 1.1rem;
}

.auth-split-layout__captcha {
  margin-bottom: 1.25rem;
}

.m-terms {
  margin-bottom: -15px !important;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .auth-split-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .auth-split-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  .auth-split-layout__brand {
    display: none;
  }

  .auth-split-layout__main {
    max-height: none;
    min-height: 100vh;
    align-items: flex-start;
    padding: clamp(1.75rem, 6vh, 2.5rem) 1.125rem 2rem;
  }

  .auth-split-layout__panel {
    max-width: 460px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .m-terms {
    margin-bottom: 0px !important;
  }
}

/* -------------------------------------------------------------------------
   Relogin modal — aligned with auth visual language
   ------------------------------------------------------------------------- */
#reloginModal.auth-split-relogin {
  --auth-text: #0f172a;
  --auth-text-muted: #64748b;
  --auth-border: #e2e8f0;
  --auth-blue-600: #2563eb;
  --auth-blue-500: #3b82f6;
  --auth-blue-700: #1d4ed8;
  --auth-radius-input: 10px;
  --auth-radius-btn: 10px;
  --auth-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

#reloginModal.auth-split-relogin .modal-dialog {
  max-width: 420px;
}

#reloginModal.auth-split-relogin .modal-content {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#reloginModal.auth-split-relogin .modal-body.relogin {
  padding: 2rem 2rem 0.5rem;
}

#reloginModal.auth-split-relogin .auth-relogin__message {
  margin: 0 0 1.35rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--auth-text);
  text-align: center;
  letter-spacing: -0.02em;
}

#reloginModal.auth-split-relogin .auth-field__input {
  min-height: 50px;
  padding: 0.8125rem 1rem;
  border-radius: var(--auth-radius-input);
}

#reloginModal.auth-split-relogin .auth-field__input:focus {
  border-color: var(--auth-blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

#reloginModal.auth-split-relogin .modal-footer {
  border: none;
  padding: 0 2rem 2rem;
  justify-content: stretch;
}

#reloginModal.auth-split-relogin .auth-relogin__submit {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff !important;
  border: none !important;
  border-radius: var(--auth-radius-btn) !important;
  background: linear-gradient(135deg, var(--auth-blue-700), var(--auth-blue-600) 45%, var(--auth-blue-500)) !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.28);
  transition: transform var(--auth-transition), box-shadow var(--auth-transition), filter var(--auth-transition);
}

#reloginModal.auth-split-relogin .auth-relogin__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

#reloginModal.auth-split-relogin .auth-relogin__submit:active:not(:disabled) {
  transform: translateY(0);
}
