/* ==================================================================
   Vritti Space :: Auth Experience — Split Cinematic
   Left: a living wellness image/video panel with brand storytelling.
   Right: a clean white form panel. Self-contained, all classes
   .vx- prefixed and scoped under .vx-auth.
   ================================================================== */

.vx-auth {
  --vx-ink:        #0A0A0A;
  --vx-ink-2:      #3A3A3C;
  --vx-muted:      #86868B;
  --vx-faint:      #B4B4BA;
  --vx-line:       #E6E6E9;
  --vx-line-2:     #F0F0F2;
  --vx-surface:    #FFFFFF;
  --vx-surface-2:  #F6F6F7;
  --vx-field:      #FAFAFB;
  --vx-stage:      #0B0B10;
  --vx-accent:     #6C63E0;
  --vx-accent-rgb: 108,99,224;
  --vx-ok:         #2C7A4F;
  --vx-warn:       #C77D2E;
  --vx-err:        #C2554C;

  --vx-radius:     14px;
  --vx-radius-lg:  26px;
  --vx-ease:       cubic-bezier(.22,.61,.36,1);
  --vx-spring:     cubic-bezier(.34,1.56,.64,1);

  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  background: var(--vx-surface);
  color: var(--vx-ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 0;
  overflow: hidden;
}
.vx-auth *,
.vx-auth *::before,
.vx-auth *::after { box-sizing: border-box; }

/* =================================================================
   LEFT — cinematic image / video panel
   ================================================================= */
.vx-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4vw, 60px);
  color: #fff;
  background: var(--vx-stage);
}
.vx-stage-img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.04);
  animation: vx-kenburns 32s ease-in-out infinite alternate;
}
@keyframes vx-kenburns {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.14) translate3d(-1.5%,-1.5%,0); }
}
.vx-stage-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11,11,16,.30) 0%, rgba(11,11,16,.55) 55%, rgba(11,11,16,.82) 100%),
    radial-gradient(120% 80% at 25% 20%, rgba(108,99,224,.30), transparent 60%);
}
.vx-aurora {
  position: absolute;
  inset: -30%;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .5;
  filter: blur(60px);
  transform: translate3d(calc(var(--px,0) * 22px), calc(var(--py,0) * 22px), 0);
  transition: transform .8s var(--vx-ease);
}
.vx-aurora::before,
.vx-aurora::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(34% 40% at 26% 30%, rgba(124,108,255,.55), transparent 62%),
    radial-gradient(30% 36% at 76% 26%, rgba(232,145,124,.40), transparent 60%),
    radial-gradient(40% 46% at 64% 82%, rgba(91,192,190,.40), transparent 64%);
  animation: vx-aurora-spin 48s linear infinite;
}
.vx-aurora::after { animation-duration: 70s; animation-direction: reverse; opacity: .7; }
@keyframes vx-aurora-spin {
  0%   { transform: rotate(0deg) scale(1.05); }
  50%  { transform: rotate(180deg) scale(1.18); }
  100% { transform: rotate(360deg) scale(1.05); }
}

.vx-stage-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.vx-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 12px;
  text-transform: uppercase;
}
.vx-brand .vx-orb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: conic-gradient(from 130deg, #6C63E0, #E89178, #5BC0BE, #9B6CE0, #6C63E0);
  position: relative;
  box-shadow: 0 0 20px rgba(108,99,224,.55);
}
.vx-brand .vx-orb::after {
  content: ""; position: absolute; inset: 5px;
  border-radius: 50%; background: rgba(11,11,16,.85);
}
.vx-clock {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.66);
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
}

.vx-stage-body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
  padding: 24px 0;
}
.vx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 24px;
}
.vx-eyebrow .vx-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.5);
  animation: vx-ping 2.6s var(--vx-ease) infinite;
}
@keyframes vx-ping {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.45); }
  70%  { box-shadow: 0 0 0 13px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.vx-headline {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 600;
  margin: 0 0 20px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.vx-headline .vx-grad {
  background: linear-gradient(104deg, #fff 8%, #D8D2FF 46%, #FFD2C0 82%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vx-sub {
  font-size: 1.04rem;
  line-height: 1.65;
  color: rgba(255,255,255,.74);
  margin: 0 0 38px;
  max-width: 430px;
}
.vx-glass {
  align-self: flex-start;
  max-width: 380px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  transform-style: preserve-3d;
  transition: transform .4s var(--vx-ease);
  will-change: transform;
}
.vx-glass-quote {
  font-size: .98rem;
  line-height: 1.6;
  color: rgba(255,255,255,.94);
  margin: 0 0 15px;
}
.vx-glass-by {
  display: flex;
  align-items: center;
  gap: 11px;
  transform: translateZ(28px);
}
.vx-glass-by .vx-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C63E0, #E89178);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #fff;
}
.vx-glass-by strong { font-size: 13px; font-weight: 600; color: #fff; display: block; line-height: 1.35; }
.vx-glass-by span { font-size: 12px; color: rgba(255,255,255,.6); }

.vx-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.vx-marquee-track {
  display: inline-flex;
  gap: 38px;
  white-space: nowrap;
  animation: vx-marquee 32s linear infinite;
}
.vx-marquee-track span {
  display: inline-flex; align-items: center; gap: 38px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.vx-marquee-track span::after { content: "✦"; color: rgba(255,255,255,.32); }
@keyframes vx-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =================================================================
   RIGHT — form panel
   ================================================================= */
.vx-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--vx-surface);
  overflow: auto;          /* tall forms scroll within the panel only */
}
.vx-panel::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 45% at 50% -8%, rgba(var(--vx-accent-rgb),.05), transparent 60%),
    radial-gradient(60% 45% at 100% 108%, rgba(232,145,124,.045), transparent 60%);
}
.vx-card {
  position: relative;
  width: 100%;
  max-width: 412px;
  margin: auto;
}
.vx-card-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--vx-muted);
  text-decoration: none;
  margin-bottom: 22px;
  transition: color .2s var(--vx-ease), gap .25s var(--vx-spring);
}
.vx-card-back:hover { color: var(--vx-ink); gap: 10px; }
.vx-card-back svg { width: 15px; height: 15px; }

.vx-seg {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  background: var(--vx-surface-2);
  border: 1px solid var(--vx-line-2);
  border-radius: 100px;
  margin-bottom: 26px;
}
.vx-seg::before {
  content: "";
  position: absolute;
  top: 4px; bottom: 4px;
  width: calc(50% - 4px);
  border-radius: 100px;
  background: var(--vx-surface);
  box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.07);
  transform: translateX(calc(var(--vx-seg,0) * 100%));
  transition: transform .42s var(--vx-spring);
}
.vx-seg a {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 11px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--vx-muted);
  text-decoration: none;
  transition: color .25s var(--vx-ease);
}
.vx-seg a.is-active { color: var(--vx-ink); }
.vx-seg a:not(.is-active):hover { color: var(--vx-ink-2); }

.vx-head { margin-bottom: 22px; }
.vx-head h1 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  letter-spacing: -.02em;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--vx-ink);
}
.vx-head p { font-size: 14px; line-height: 1.55; color: var(--vx-muted); margin: 0; }
.vx-reveal .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  filter: blur(6px);
  animation: vx-word .75s var(--vx-ease) forwards;
}
@keyframes vx-word { to { opacity: 1; transform: none; filter: blur(0); } }

.vx-rise > * { opacity: 0; transform: translateY(13px); animation: vx-rise-in .6s var(--vx-ease) forwards; }
@keyframes vx-rise-in { to { opacity: 1; transform: none; } }
.vx-rise > *:nth-child(1){animation-delay:.08s}
.vx-rise > *:nth-child(2){animation-delay:.14s}
.vx-rise > *:nth-child(3){animation-delay:.20s}
.vx-rise > *:nth-child(4){animation-delay:.26s}
.vx-rise > *:nth-child(5){animation-delay:.32s}
.vx-rise > *:nth-child(6){animation-delay:.38s}
.vx-rise > *:nth-child(7){animation-delay:.44s}
.vx-rise > *:nth-child(8){animation-delay:.50s}
.vx-rise > *:nth-child(n+9){animation-delay:.56s}

/* Alerts (keeps controller .alert flash classes) */
.vx-auth .alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 15px; border-radius: 13px;
  font-size: 13px; line-height: 1.5; margin-bottom: 16px;
  border: 1px solid;
  animation: vx-rise-in .5s var(--vx-ease) both;
}
.vx-auth .alert::before { content:""; flex-shrink:0; width:7px; height:7px; border-radius:50%; margin-top:7px; }
.vx-auth .alert-success { background: rgba(44,122,79,.08); border-color: rgba(44,122,79,.25); color: #1f5a39; }
.vx-auth .alert-success::before { background: var(--vx-ok); }
.vx-auth .alert-error   { background: rgba(194,85,76,.08); border-color: rgba(194,85,76,.25); color: #8b3329; }
.vx-auth .alert-error::before { background: var(--vx-err); }
.vx-auth .alert-info    { background: rgba(var(--vx-accent-rgb),.07); border-color: rgba(var(--vx-accent-rgb),.22); color: #3c3aa0; }
.vx-auth .alert-info::before { background: var(--vx-accent); }

/* Fields */
.vx-field { position: relative; margin-bottom: 13px; }
.vx-field input {
  width: 100%;
  height: 56px;
  padding: 21px 46px 7px 44px;
  background: var(--vx-field);
  border: 1.5px solid var(--vx-line);
  border-radius: var(--vx-radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--vx-ink);
  outline: none;
  transition: border-color .22s var(--vx-ease), background .22s var(--vx-ease), box-shadow .25s var(--vx-ease);
}
.vx-field input::placeholder { color: transparent; }
.vx-field input:hover { border-color: var(--vx-faint); }
.vx-field input:focus {
  border-color: rgba(var(--vx-accent-rgb),.7);
  background: var(--vx-surface);
  box-shadow: 0 0 0 4px rgba(var(--vx-accent-rgb),.13);
}
.vx-field input[readonly] { background: var(--vx-surface-2); color: var(--vx-ink-2); }
.vx-field input[readonly]:focus { box-shadow: none; border-color: var(--vx-line); }
.vx-field label {
  position: absolute;
  left: 44px; top: 50%;
  transform: translateY(-50%);
  font-size: 15px; color: var(--vx-muted);
  pointer-events: none;
  transition: all .2s var(--vx-ease);
}
.vx-field input:focus + label,
.vx-field input:not(:placeholder-shown) + label,
.vx-field input[readonly] + label,
.vx-field.is-filled label {
  top: 13px; transform: none;
  font-size: 10.5px; font-weight: 600; letter-spacing: .5px;
  color: var(--vx-muted);
}
.vx-field input:focus + label { color: var(--vx-accent); }
.vx-field .vx-ic {
  position: absolute;
  left: 15px; top: 50%;
  transform: translateY(-50%);
  width: 19px; height: 19px;
  color: var(--vx-faint);
  pointer-events: none;
  transition: color .22s var(--vx-ease), transform .22s var(--vx-spring);
}
.vx-field .vx-ic svg { width: 100%; height: 100%; display: block; }
.vx-field input:focus ~ .vx-ic { color: var(--vx-accent); transform: translateY(-50%) scale(1.08); }
.vx-field.is-filled .vx-ic { color: var(--vx-muted); }
.vx-eye {
  position: absolute;
  right: 7px; top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border: 0; background: transparent;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--vx-faint);
  cursor: pointer;
  transition: color .2s var(--vx-ease), background .2s var(--vx-ease);
}
.vx-eye:hover { color: var(--vx-ink); background: var(--vx-surface-2); }
.vx-eye svg { width: 18px; height: 18px; }
.vx-eye .vx-eye-off { display: none; }
.vx-eye.is-on .vx-eye-on  { display: none; }
.vx-eye.is-on .vx-eye-off { display: block; }

.vx-field .vx-ripple {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(var(--vx-accent-rgb),.18);
  transform: translate(-50%,-50%) scale(0);
  animation: vx-ripple .7s var(--vx-ease) forwards;
  pointer-events: none;
}
@keyframes vx-ripple { to { transform: translate(-50%,-50%) scale(26); opacity: 0; } }

/* Caps-Lock hint */
.vx-caps {
  display: none;
  align-items: center;
  gap: 7px;
  margin: -4px 2px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--vx-warn);
}
.vx-caps.is-on { display: flex; }
.vx-caps svg { width: 14px; height: 14px; }

/* Password strength */
.vx-pw { display: flex; align-items: center; gap: 8px; margin: -3px 2px 15px; }
.vx-pw-bars { display: flex; gap: 5px; flex: 1; }
.vx-pw-bars i { flex: 1; height: 4px; border-radius: 3px; background: var(--vx-line); transition: background .35s var(--vx-ease); }
.vx-pw-label { font-size: 10.5px; font-weight: 600; letter-spacing: .5px; color: var(--vx-faint); min-width: 50px; text-align: right; }
.vx-pw[data-level="1"] i:nth-child(-n+1){background:var(--vx-err)}
.vx-pw[data-level="2"] i:nth-child(-n+2){background:var(--vx-warn)}
.vx-pw[data-level="3"] i:nth-child(-n+3){background:#3DA66B}
.vx-pw[data-level="4"] i{background:var(--vx-ok)}
.vx-pw[data-level="1"] .vx-pw-label{color:var(--vx-err)}
.vx-pw[data-level="2"] .vx-pw-label{color:var(--vx-warn)}
.vx-pw[data-level="3"] .vx-pw-label,
.vx-pw[data-level="4"] .vx-pw-label{color:var(--vx-ok)}

/* Row + checks */
.vx-row { display:flex; align-items:center; justify-content:space-between; gap:12px; margin:3px 2px 20px; font-size:13px; }
.vx-check { display:inline-flex; align-items:center; gap:9px; cursor:pointer; color:var(--vx-ink-2); user-select:none; }
.vx-check input { position:absolute; opacity:0; pointer-events:none; }
.vx-check .vx-box,
.vx-agree .vx-box {
  width:18px; height:18px; border-radius:6px;
  border:1.5px solid var(--vx-faint);
  background:var(--vx-surface);
  display:inline-flex; align-items:center; justify-content:center;
  color:#fff; flex-shrink:0;
  transition: all .2s var(--vx-spring);
}
.vx-check .vx-box svg,
.vx-agree .vx-box svg { width:11px; height:11px; opacity:0; transform:scale(.4); transition:all .2s var(--vx-spring); }
.vx-check input:checked + .vx-box,
.vx-agree input:checked + .vx-box { background:var(--vx-ink); border-color:var(--vx-ink); }
.vx-check input:checked + .vx-box svg,
.vx-agree input:checked + .vx-box svg { opacity:1; transform:scale(1); }
.vx-check input:focus-visible + .vx-box,
.vx-agree input:focus-visible + .vx-box { box-shadow:0 0 0 4px rgba(var(--vx-accent-rgb),.2); }
.vx-link { color:var(--vx-ink); font-weight:500; text-decoration:none; transition:color .2s var(--vx-ease); }
.vx-link:hover { color:var(--vx-accent); }
.vx-agree { display:flex; align-items:flex-start; gap:10px; margin:4px 2px 20px; font-size:12.5px; line-height:1.5; color:var(--vx-ink-2); cursor:pointer; user-select:none; }
.vx-agree input { position:absolute; opacity:0; pointer-events:none; }
.vx-agree .vx-box { margin-top:1px; }
.vx-agree a { color:var(--vx-ink); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.vx-agree a:hover { color:var(--vx-accent); }

/* Submit */
.vx-submit {
  position: relative;
  width: 100%;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  background: var(--vx-ink);
  color: #fff;
  border: 0;
  border-radius: var(--vx-radius);
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(10,10,10,.22);
  transition: transform .3s var(--vx-spring), box-shadow .3s var(--vx-ease), opacity .2s;
  will-change: transform;
}
.vx-submit::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.22) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .8s var(--vx-ease);
}
.vx-submit:hover { box-shadow: 0 16px 34px rgba(10,10,10,.28); }
.vx-submit:hover::before { transform: translateX(120%); }
.vx-submit:active { transform: scale(.985); }
.vx-submit .vx-arrow {
  width: 27px; height: 27px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s var(--vx-spring), background .25s;
}
.vx-submit .vx-arrow svg { width: 15px; height: 15px; }
.vx-submit:hover .vx-arrow { background: rgba(255,255,255,.28); transform: translateX(3px); }
.vx-submit.is-loading { pointer-events: none; opacity: .85; }
.vx-submit.is-loading .vx-label { opacity: .55; }
.vx-submit.is-loading .vx-arrow svg { display: none; }
.vx-submit.is-loading .vx-arrow::after {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff;
  animation: vx-spin .8s linear infinite;
}
@keyframes vx-spin { to { transform: rotate(360deg); } }

.vx-note {
  margin-top: 20px; padding: 13px 16px; border-radius: 14px;
  background: var(--vx-surface-2); border: 1px solid var(--vx-line-2);
  text-align: center; font-size: 12.5px; color: var(--vx-ink-2);
}
.vx-note a { color: var(--vx-ink); font-weight: 600; }
.vx-note a:hover { color: var(--vx-accent); }
.vx-foot { margin-top: 22px; text-align: center; font-size: 13px; color: var(--vx-muted); }
.vx-foot a { color: var(--vx-ink); font-weight: 600; text-decoration: none; }
.vx-foot a:hover { color: var(--vx-accent); }
.vx-secure {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: .4px;
  color: var(--vx-faint);
}
.vx-secure svg { width: 13px; height: 13px; }

/* Affirmation rotator (optional, used if present) */
.vx-affirm { display: none; }

/* =================================================================
   Responsive — stack the panels, image becomes a top hero
   ================================================================= */
@media (max-width: 980px) {
  .vx-auth { grid-template-columns: 1fr; grid-template-rows: auto 1fr; overflow: auto; }
  .vx-stage { min-height: 38vh; padding: 28px 30px; }
  .vx-stage-body { justify-content: flex-end; padding: 18px 0 6px; max-width: none; }
  .vx-sub { display: none; }
  .vx-glass { display: none; }
  .vx-marquee { display: none; }
  .vx-headline { font-size: clamp(1.8rem, 6vw, 2.6rem); margin-bottom: 0; }
  .vx-eyebrow { margin-bottom: 14px; }
  .vx-panel { overflow: visible; padding: 44px 30px 56px; }
}
@media (max-width: 600px) {
  .vx-stage { min-height: 30vh; padding: 22px 22px; }
  .vx-panel { padding: 32px 20px 44px; }
  .vx-clock { display: none; }
  .vx-field input, .vx-field label { font-size: 16px; }     /* no iOS focus-zoom */
  .vx-field input:focus + label,
  .vx-field input:not(:placeholder-shown) + label,
  .vx-field input[readonly] + label,
  .vx-field.is-filled label { font-size: 10.5px; }
}
@media (min-width: 981px) and (min-height: 920px) {
  .vx-stage { padding: 70px; }
  .vx-panel { padding: 70px 40px; }
}

/* =================================================================
   Reduced motion
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  .vx-auth *, .vx-auth *::before, .vx-auth *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .vx-stage-img { animation: none !important; transform: scale(1.04) !important; }
  .vx-aurora { transform: none !important; }
  .vx-reveal .w, .vx-rise > * { opacity: 1 !important; transform: none !important; filter: none !important; }
}
