/* =============================================================================
   Auth – same split UI as profi24, Eventbox colors
   Primary #e6007e / Dark #000000
   ============================================================================= */

html.ebo-auth-html,
body.ebo-auth-body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #fff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.df-auth-page {
  --p24-primary:        #e6007e;
  --p24-primary-hover:  #c4006b;
  --p24-primary-light:  #fde8f3;
  --p24-secondary:      #e6007e;
  --p24-accent:         #e6007e;
  --p24-accent-hover:   #c4006b;
  --p24-dark:           #000000;
  --p24-dark-hover:     #111111;
  --p24-text:           #111111;
  --p24-text-muted:     #64748B;
  --p24-border:         #E2E8F0;
  --p24-bg:             #f9f9f9;
  --p24-surface:        #FFFFFF;
  --p24-white:          #FFFFFF;
  --p24-success:        #22C55E;
  --p24-success-dark:   #16A34A;
  --p24-success-bg:     rgba(34, 197, 94, 0.10);
  --p24-error:          #EF4444;
  --p24-error-dark:     #DC2626;
  --p24-error-bg:       rgba(239, 68, 68, 0.08);
  --p24-info:           #c4006b;
  --p24-info-bg:        #fde8f3;
  --p24-gray-100:       #F3F4F6;
  --p24-gray-300:       #D1D5DB;
  --p24-gray-400:       #9CA3AF;
  --p24-gray-600:       #4B5563;
  --p24-accent-rgb:     230, 0, 126;
  --p24-dark-rgb:       0, 0, 0;
  box-sizing: border-box;
}

.df-auth-page *,
.df-auth-page *::before,
.df-auth-page *::after {
  box-sizing: border-box;
}

.ebo-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: none !important;
}

.df-auth-brand__logo img {
  max-height: 32px;
  width: auto;
  display: block;
}

.df-auth-link:hover {
  color: var(--p24-primary-hover);
}

.df-btn-submit {
  background: linear-gradient(135deg, #e6007e 0%, #c4006b 100%);
}

.df-auth-page .df-btn-submit {
  background: linear-gradient(135deg, #e6007e 0%, #c4006b 100%) !important;
}

/* ── Keyframes ────────────────────────────────────────────────────────────── */

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

@keyframes df-orb-a {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(28px,-18px) scale(1.06); }
  70%     { transform: translate(-16px,12px) scale(.97); }
}

@keyframes df-orb-b {
  0%,100% { transform: translate(0,0) scale(1); }
  35%     { transform: translate(-22px,18px) scale(1.04); }
  65%     { transform: translate(18px,-12px) scale(.96); }
}

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

@keyframes df-line-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes df-spin {
  to { transform: rotate(360deg); }
}

@keyframes df-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .6; transform: scale(.92); }
}

/* ── Split Layout ─────────────────────────────────────────────────────────── */

.df-auth-page { min-height: 100vh; }

.df-auth-split {
  display: grid;
  grid-template-columns: 460px 1fr;
  min-height: 100vh;
}

/* ── Brand Column ─────────────────────────────────────────────────────────── */

.df-auth-brand {
  background: var(--p24-dark);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 52px;
}

.df-auth-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 15% 25%, rgba(var(--p24-dark-rgb),.75) 0%, transparent 68%),
    radial-gradient(ellipse 50% 55% at 82% 72%, rgba(var(--p24-accent-rgb),.14) 0%, transparent 62%),
    radial-gradient(ellipse 45% 40% at 55% 5%,  rgba(var(--p24-dark-rgb),.45) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.df-auth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}
.df-auth-orb--1 { width:340px;height:340px;background:rgba(var(--p24-dark-rgb),.55);  top:-90px;  right:-90px; animation:df-orb-a 13s ease-in-out infinite; }
.df-auth-orb--2 { width:260px;height:260px;background:rgba(var(--p24-accent-rgb),.13);bottom:-70px;left:-70px;  animation:df-orb-b 16s ease-in-out infinite; }
.df-auth-orb--3 { width:200px;height:200px;background:rgba(var(--p24-dark-rgb),.38);  top:42%;   right:8%;    animation:df-orb-a 19s ease-in-out infinite reverse; }

.df-auth-brand__inner {
  position: relative;
  z-index: 1;
  max-width: 360px;
  width: 100%;
  animation: df-fade-up .7s ease both;
}

.df-auth-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 19px;
  font-weight: 800;
  color: var(--p24-white);
  text-decoration: none;
  letter-spacing: -.04em;
  margin-bottom: 44px;
}

.df-auth-brand__logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--p24-accent);
  animation: df-pulse 2.4s ease-in-out infinite;
}

.df-auth-brand__tagline {
  font-size: clamp(21px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--p24-white);
  line-height: 1.22;
  letter-spacing: -.04em;
  margin: 0 0 10px;
}

.df-auth-brand__sub {
  font-size: 14.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0 0 32px;
}

.df-auth-brand__bullets {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.df-auth-brand__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.df-auth-brand__check {
  flex-shrink: 0;
  width: 19px; height: 19px;
  border-radius: 6px;
  background: rgba(var(--p24-accent-rgb),.2);
  border: 1px solid rgba(var(--p24-accent-rgb),.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p24-accent);
}

.df-auth-brand__stats {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.df-auth-brand__stat strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--p24-white);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 3px;
}

.df-auth-brand__stat span {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 500;
}

/* Testimonial card */
.df-auth-brand__card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 18px 20px;
  animation: df-card-float 6s ease-in-out infinite;
}

.df-auth-brand__card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.df-auth-brand__card-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p24-primary), var(--p24-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--p24-white);
  flex-shrink: 0;
}

.df-auth-brand__card-meta strong { display:block; font-size:13px; font-weight:600; color: var(--p24-white); }
.df-auth-brand__card-meta span   { font-size:12px; color:rgba(255,255,255,.4); }
.df-auth-brand__card-stars       { font-size:12px; color:var(--p24-accent); margin-bottom:6px; }
.df-auth-brand__card-text        { font-size:13px; color:rgba(255,255,255,.68); line-height:1.55; margin:0; font-style:italic; }

/* ── Form Column ──────────────────────────────────────────────────────────── */

.df-auth-form-col {
  display: flex;
  justify-content: center;
  padding: 52px 32px;
  background: var(--p24-surface);
  overflow-y: auto;
  min-height: 100vh;
}

.df-auth-card {
  width: 100%;
  max-width: 440px;
  animation: df-fade-up .55s .08s ease both;
}

/* Eyebrow */
.df-auth-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--p24-accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.df-auth-card__eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--p24-accent);
  animation: df-pulse 2s ease-in-out infinite;
}

.df-auth-card__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--p24-dark);
  letter-spacing: -.04em;
  margin: 0 0 6px;
  line-height: 1.15;
}

.df-auth-card__sub {
  font-size: 15px;
  color: var(--p24-text-muted);
  margin: 0 0 20px;
  line-height: 1.55;
}

.df-auth-card__foot {
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--p24-text-muted);
  text-align: center;
}

/* ── Type Switch ──────────────────────────────────────────────────────────── */

.df-auth-type-switch {
  display: flex;
  background: var(--p24-border);
  border-radius: 11px;
  padding: 4px;
  margin-bottom: 30px;
  gap: 3px;
}

.df-auth-type-switch__btn {
  flex: 1;
  text-align: center;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--p24-text-muted);
  text-decoration: none;
  transition: all .2s cubic-bezier(.4,0,.2,1);
}

.df-auth-type-switch__btn.is-active {
  background: var(--p24-surface);
  color: var(--p24-dark);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* ══════════════════════════════════════════════════════════════════════════
   FLOATING LABEL INPUT SYSTEM — Premium
   ══════════════════════════════════════════════════════════════════════════ */

@keyframes df-field-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


.df-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.df-form > *:nth-child(1) { animation: df-field-in .45s .08s ease both; }
.df-form > *:nth-child(2) { animation: df-field-in .45s .14s ease both; }
.df-form > *:nth-child(3) { animation: df-field-in .45s .20s ease both; }
.df-form > *:nth-child(4) { animation: df-field-in .45s .26s ease both; }
.df-form > *:nth-child(5) { animation: df-field-in .45s .32s ease both; }
.df-form > *:nth-child(6) { animation: df-field-in .45s .38s ease both; }
.df-form > *:nth-child(7) { animation: df-field-in .45s .44s ease both; }

/* ── Wrapper ─────────────────────────────────────────────────────────────── */

.df-fl {
  position: relative;
}

/*
 * Gradient focus ring — the "wow" element.
 * CSS mask technique: gradient fills the padding (border zone),
 * the content-box is cut out via mask-composite: exclude.
 * Zero DOM overhead, clean gradient border on focus.
 */
.df-fl::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 58px; /* matches input height — stops ring from wrapping sub-elements like strength bar */
  border-radius: 13px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--p24-primary) 0%, var(--p24-info) 55%, var(--p24-accent) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .24s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 2;
}

/* Focus → gradient ring appears */
.df-fl:focus-within::after { opacity: 1; }

/* Error: suppress the ring at rest; restore normal ring when user focuses to fix */
.df-fl.has-error::after                { opacity: 0; }
.df-fl.has-error:focus-within::after   { opacity: 1; }

/* ── Input / Select / Textarea ──────────────────────────────────────────── */

.df-fl__input {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  height: 58px;
  padding: 26px 16px 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--p24-dark);
  background: var(--p24-gray-100);
  border: 1.5px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: background .22s ease, box-shadow .22s ease;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.4;
  caret-color: var(--p24-primary);
}

.df-fl__input::placeholder { color: transparent; }

.df-fl__input:hover:not(:focus) {
  background: var(--p24-gray-100);
}

.df-fl:focus-within .df-fl__input {
  background: var(--p24-surface);
  box-shadow: 0 4px 22px rgba(var(--p24-dark-rgb),.10);
}

/* Error: input looks exactly as in the normal state — no visual change on the field itself */

/* ── Floating label ─────────────────────────────────────────────────────── */

.df-fl__label {
  position: absolute;
  z-index: 3;
  left: 17px;
  /* Fixed px instead of 50% so the position is always relative to the INPUT (58px),
     not the .df-fl wrapper — which grows when an error message appears below. */
  top: 29px;
  transform: translateY(-50%) scale(1);
  transform-origin: left center;
  font-size: 15px;
  font-weight: 400;
  color: var(--p24-gray-400);
  pointer-events: none;
  transition:
    transform .22s cubic-bezier(.4,0,.2,1),
    color     .22s ease;
  white-space: nowrap;
  line-height: 1;
}

.df-fl__input:focus   ~ .df-fl__label,
.df-fl__input.has-val ~ .df-fl__label {
  transform: translateY(-128%) scale(0.67);
  color: var(--p24-primary);
  font-weight: 700;
  letter-spacing: .06em;
}

/* Error: float the label up (same position as filled), always red —
   even if the field is empty, so the user sees clearly which field failed */
.df-fl.has-error .df-fl__input ~ .df-fl__label {
  transform: translateY(-128%) scale(0.67);
  color: var(--p24-error);
  font-weight: 700;
  letter-spacing: .06em;
}

/* When user focuses the error field to fix it: keep label up but switch to brand colour */
.df-fl.has-error .df-fl__input:focus ~ .df-fl__label {
  color: var(--p24-primary);
}

/* ── Password toggle ────────────────────────────────────────────────────── */

.df-fl--pw .df-fl__input { padding-right: 50px; }


.df-fl__pw-btn {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--p24-gray-300);
  display: flex;
  align-items: center;
  line-height: 0;
  transition: color .15s;
}

.df-fl__pw-btn:hover { color: var(--p24-primary); }

/* ── Textarea ───────────────────────────────────────────────────────────── */

.df-fl--textarea .df-fl__input {
  height: auto;
  min-height: 180px;
  padding-top: 28px;
  resize: vertical;
}

.df-fl--textarea::after {
  display: none;
}

.df-fl--textarea .df-fl__label {
  top: 24px;
  transform: scale(1);
  transform-origin: left top;
}

.df-fl--textarea .df-fl__input:focus   ~ .df-fl__label,
.df-fl--textarea .df-fl__input.has-val ~ .df-fl__label {
  transform: translateY(-18px) scale(0.73);
  color: var(--p24-primary);
  font-weight: 700;
  letter-spacing: .05em;
}

/* ── Select ─────────────────────────────────────────────────────────────── */

.df-fl--select .df-fl__input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.df-fl--select:focus-within .df-fl__input { background-color: var(--p24-surface); }

/* ── Error / Hint ───────────────────────────────────────────────────────── */

.df-fl__error {
  font-size: 12.5px;
  color: var(--p24-error);
  margin-top: 6px;
  padding-left: 4px;
  display: none;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.45;
}

.df-fl__error::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--p24-error);
  margin-top: 5px;
}

.df-fl__error.is-visible {
  display: flex;
  animation: df-field-in .2s ease both;
}

.df-fl__hint {
  font-size: 12px;
  color: var(--p24-gray-400);
  margin-top: 6px;
  padding-left: 2px;
}

/* ── Checkbox ───────────────────────────────────────────────────────────── */

.df-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  color: var(--p24-gray-600);
  cursor: pointer;
  line-height: 1.55;
  user-select: none;
}

.df-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--p24-primary);
  cursor: pointer;
}

/* ── Row ────────────────────────────────────────────────────────────────── */

.df-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* ── Password Strength ────────────────────────────────────────── */

.df-pw-strength {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.df-pw-strength__bars {
  display: flex;
  gap: 4px;
}

.df-pw-strength__bar {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: rgba(var(--p24-dark-rgb),.1);
  transition: background .3s;
}

.df-pw-strength__label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--p24-gray-400);
  transition: color .3s;
}

/* ── Submit Button ────────────────────────────────────────────────────────── */

.df-btn-submit {
  width: 100%;
  min-height: 50px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: -.01em;
  color: var(--p24-white);
  background: linear-gradient(135deg, var(--p24-primary) 0%, var(--p24-dark) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.df-btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position .5s ease;
}

.df-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--p24-dark-rgb),.32);
}

.df-btn-submit:hover::after { background-position: 200% center; }
.df-btn-submit:active { transform: translateY(0); box-shadow: none; }
.df-btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; box-shadow: none; }

.df-btn-submit__spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--p24-white);
  border-radius: 50%;
  animation: df-spin .7s linear infinite;
  display: none;
  flex-shrink: 0;
}

.df-btn-submit.is-loading .df-btn-submit__spinner { display: block; }
.df-btn-submit.is-loading .df-btn-submit__text    { visibility: hidden; width: 0; overflow: hidden; }

/* Secondary button */
.df-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 1.5px solid var(--p24-primary);
  color: var(--p24-primary);
  background: transparent;
  cursor: pointer;
  transition: background .18s, color .18s, transform .18s, box-shadow .18s;
}

.df-btn-outline:hover {
  background: var(--p24-primary);
  color: var(--p24-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(var(--p24-dark-rgb),.2);
}

/* ── Auth Notices ─────────────────────────────────────────────────────────── */

.df-notice {
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
  border: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: df-fade-up .28s ease both;
}

/* CSS display:flex overrides the HTML hidden attribute — fix it explicitly */
.df-notice[hidden] { display: none !important; }
.df-auth-type-switch[hidden],
.df-auth-card__eyebrow[hidden],
.df-auth-card__title[hidden],
.df-auth-card__sub[hidden],
.df-auth-card__foot[hidden],
.df-form[hidden] { display: none !important; }

.df-notice svg { flex-shrink: 0; margin-top: 1px; }
.df-notice--success { background: var(--p24-success-bg); border-color:var(--p24-success-bg); color:var(--p24-success-dark); }
.df-notice--error   { background: var(--p24-error-bg); border-color:var(--p24-error-bg); color:var(--p24-error-dark); }
.df-notice--info    { background:var(--p24-primary-light); border-color:rgba(var(--p24-dark-rgb), 0.15); color:var(--p24-info); }

/* ── Success Screen ───────────────────────────────────────────────────────── */

.df-success-screen {
  text-align: center;
  padding: 20px 0 36px;
  animation: df-fade-up .45s ease both;
}

.df-success-screen__icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p24-primary-light), var(--p24-info-bg));
  border: 1px solid rgba(var(--p24-dark-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--p24-primary);
}

.df-success-screen h2 { font-size:21px; font-weight:800; color:var(--p24-dark); letter-spacing:-.04em; margin:0 0 9px; }
.df-success-screen p  { font-size:15px; color: var(--p24-text-muted); line-height:1.65; margin:0 0 26px; }

.df-success-screen__login-btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* Links */
.df-auth-link { color:var(--p24-primary); text-decoration:none; font-weight:600; transition:color .15s; }
.df-auth-link:hover { color:var(--p24-accent); }
.df-auth-link--sm   { font-size:13px; font-weight:500; }

/* Divider */
.df-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--p24-gray-300);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  margin: 2px 0;
}
.df-auth-divider::before,
.df-auth-divider::after { content:''; flex:1; height:1px; background: var(--p24-border); }


/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .df-auth-split { grid-template-columns: 1fr; }
  .df-auth-brand { position: static; height: auto; padding: 36px 24px; }
  .df-auth-brand__card { animation: none; }
  .df-auth-form-col { min-height: 0; padding: 36px 20px; }
}

@media (max-width: 520px) {
  .df-auth-brand__stats { display: none; }
  .df-auth-card__title  { font-size: 22px; }
}

@media (max-width: 480px) {
  .df-form__row {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ── Elementor reset overrides for auth pages ─────────────────────────────── */

.df-auth-page .df-fl--textarea .df-fl__input {
  height: auto !important;
  min-height: 180px !important;
  padding-top: 28px !important;
  resize: vertical !important;
}

.df-auth-page .df-fl__input {
  width: 100% !important;
  box-sizing: border-box !important;
  height: 58px !important;
  padding: 26px 16px 6px !important;
  font-size: 15px !important;
  font-family: 'Inter', sans-serif !important;
  color: var(--p24-dark) !important;
  background: var(--p24-gray-100) !important;
  border: 1.5px solid transparent !important;
  border-radius: 12px !important;
  outline: none !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  line-height: 1.4 !important;
  caret-color: var(--p24-primary) !important;
}

.df-auth-page .df-fl:focus-within .df-fl__input {
  background: var(--p24-surface) !important;
  box-shadow: 0 4px 22px rgba(var(--p24-dark-rgb),.10) !important;
}

.df-auth-page .df-fl--pw .df-fl__input { padding-right: 50px !important; }

.df-auth-page .df-btn-submit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 15px 24px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: 'Inter', sans-serif !important;
  color: var(--p24-white) !important;
  background: linear-gradient(135deg, var(--p24-primary) 0%, var(--p24-dark) 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  box-shadow: none !important;
  text-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.df-auth-page .df-btn-submit:hover {
  color: var(--p24-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(var(--p24-dark-rgb),.32) !important;
}

.df-auth-page .df-fl__pw-btn {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 6px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
}

.df-auth-page .df-fl--select .df-fl__input {
  cursor: pointer !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 40px !important;
}

.df-auth-page .df-check input[type="checkbox"] {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--p24-primary) !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: none !important;
}
