/* Candidate-facing auth + dashboard pages — Job Vista theme */

/* Header */
.cand-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 153, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 153, 255, 0.06);
  position: sticky; top: 0; z-index: 100;
}
.cand-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem;
}
.cand-brand img { height: 40px; display: block; }
.cand-nav { display: flex; gap: 0.5rem; align-items: center; }
.cand-nav a {
  color: #1a3a5c; text-decoration: none; padding: 0.5rem 0.85rem;
  border-radius: 8px; font-weight: 500; font-size: 0.95rem;
  transition: background .15s;
}
.cand-nav a:hover { background: #e8f4ff; color: #1453ad; }
.cand-link-muted { color: #6b7c8e !important; }
.cand-cta {
  background: linear-gradient(135deg, #1967d2 0%, #1453ad 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 153, 255, 0.3);
}
.cand-cta:hover { color: #ffffff !important; background: linear-gradient(135deg, #1453ad 0%, #003d80 100%); }

/* Main */
.cand-main { padding: 3rem 0; min-height: calc(100vh - 140px); }

/* Auth card */
.cand-auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 6px 28px rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 153, 255, 0.08);
}
.cand-auth-card-wide { max-width: 640px; }
.cand-auth-title { font-size: 1.6rem; font-weight: 700; color: #1a3a5c; margin: 0 0 0.4rem; }
.cand-auth-sub { font-size: 0.95rem; color: #6b7c8e; margin: 0 0 1.5rem; line-height: 1.5; }

/* Form */
.cand-auth-form { display: flex; flex-direction: column; gap: 0.85rem; }
.cand-field { display: flex; flex-direction: column; gap: 0.35rem; }
.cand-field > span { font-size: 0.85rem; font-weight: 600; color: #1a3a5c; }
.cand-field-muted { color: #6b7c8e; font-weight: 400; font-size: 0.8rem; }
.cand-field input {
  padding: 0.65rem 0.85rem;
  border: 1px solid #d6dee6;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #1a3a5c;
  background: #ffffff;
  transition: border-color .15s, box-shadow .15s;
}
.cand-field input:focus {
  outline: none;
  border-color: #1967d2;
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.15);
}
.cand-auth-row {
  display: flex; justify-content: flex-end;
  margin: -0.2rem 0 0;
  font-size: 0.85rem;
}
.cand-auth-row a { color: #1453ad; text-decoration: none; }
.cand-auth-row a:hover { text-decoration: underline; }

/* Buttons */
.cand-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  line-height: 1.2;
  width: 100%;
}
.cand-btn:hover { transform: translateY(-1px); }
.cand-btn-primary {
  background: linear-gradient(135deg, #1967d2 0%, #1453ad 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 153, 255, 0.3);
  margin-top: 0.5rem;
}
.cand-btn-primary:hover { color: #ffffff; box-shadow: 0 6px 20px rgba(0, 153, 255, 0.45); }
.cand-btn-google {
  background: #ffffff;
  color: #1a3a5c;
  border-color: #d6dee6;
}
.cand-btn-google:hover { color: #1a3a5c; background: #f7fbff; border-color: #b6dcff; }
.cand-btn-google i { color: #ea4335; }
.cand-btn-ghost {
  background: transparent;
  color: #6b7c8e;
  border-color: #d6dee6;
  margin-top: 1.5rem;
}
.cand-btn-ghost:hover { color: #1a3a5c; background: #f3f6f9; }

/* Divider */
.cand-auth-divider {
  display: flex; align-items: center;
  margin: 1.5rem 0;
  font-size: 0.8rem; color: #6b7c8e;
}
.cand-auth-divider::before,
.cand-auth-divider::after {
  content: ''; flex: 1; height: 1px; background: #e3eaf2;
}
.cand-auth-divider span { padding: 0 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* Footer link */
.cand-auth-foot {
  text-align: center; margin: 1.5rem 0 0; font-size: 0.9rem; color: #6b7c8e;
}
.cand-auth-foot a { color: #1453ad; text-decoration: none; font-weight: 600; }
.cand-auth-foot a:hover { text-decoration: underline; }

/* Dashboard summary */
.cand-account-summary {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.cand-account-summary li {
  padding: 0.7rem 0.85rem;
  background: #f7fbff;
  border: 1px solid #e3eaf2;
  border-radius: 10px;
  font-size: 0.95rem; color: #1a3a5c;
}
.cand-account-summary li strong { color: #1a3a5c; margin-right: 0.4rem; }
.cand-account-summary li a { color: #1453ad; }

/* Pills */
.cand-pill {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-left: 0.35rem;
}
.cand-pill-ok   { background: #d6f3df; color: #0d6e35; }
.cand-pill-info { background: #d8defb; color: #3730a3; }

/* Flash messages */
.cand-flash-wrap { max-width: 440px; margin: 0 auto 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cand-auth-card-wide + .cand-flash-wrap,
.cand-flash-wrap:has(+ .cand-auth-card-wide) { max-width: 640px; }
.cand-flash {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  border: 1px solid transparent;
}
.cand-flash-info  { background: #e7f4ff; color: #084c89; border-color: #b6dcff; }
.cand-flash-error { background: #fdecec; color: #8a1f1f; border-color: #f5b5b5; }
.cand-flash-warn  { background: #fff7e6; color: #8a5a00; border-color: #ffe1a8; }

/* Footer */
.cand-footer {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid #e3eaf2;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7c8e;
}

@media (max-width: 540px) {
  .cand-auth-card { padding: 1.5rem; border-radius: 14px; }
  .cand-auth-title { font-size: 1.35rem; }
}

/* ============================================================
   Job Vista candidate UX enhancements (auth.html + dashboard
   templates that extend public_base.html / public.css).
   Additive only — reuses jv-* tokens, never overrides public.css.
   ============================================================ */

/* visually-hidden label (accessible name without visible text) */
.jv-vh {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* universal focus-visible ring + pointer + 44px touch targets */
.jv-tap { min-height: 44px; }
a.jv-tap, button.jv-tap, .jv-auth-tab { cursor: pointer; }
.jv-auth-eye, .jv-auth-tab, .jv-tap { -webkit-tap-highlight-color: transparent; }

.jv-auth-col a:focus-visible,
.jv-auth-col input:focus-visible,
.jv-auth-col button:focus-visible,
.jv-auth-tab:focus-visible,
.jv-tap:focus-visible {
  outline: 3px solid rgba(25, 103, 210, .45);
  outline-offset: 2px;
  border-radius: 8px;
}
.jv-auth-eye { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }

/* inline validation */
.jv-auth-field input.jv-invalid { box-shadow: 0 0 0 2px #e0484d inset; }
.jv-field-err {
  margin: 6px 2px 0; min-height: 0; font-size: 12.5px; line-height: 1.35;
  color: #c5363b; font-weight: 500;
}
.jv-field-err:empty { display: none; }

/* "or" divider variant for auth columns (text label centred) */
.jv-auth-col .jv-or { justify-content: center; text-transform: none; letter-spacing: 0; }

/* loading / disabled submit state with spinner */
.jv-btn.is-loading, .jv-btn[aria-busy="true"],
.cand-btn.is-loading, .cand-btn[aria-busy="true"] {
  position: relative; pointer-events: none; opacity: .82;
}
.jv-btn.is-loading .jv-btn-label, .jv-btn.is-loading > span:not(.jv-spinner),
.cand-btn.is-loading > i, .cand-btn.is-loading > span:not(.jv-spinner) { visibility: hidden; }
.jv-btn.is-loading::after, .cand-btn.is-loading::after {
  content: ""; position: absolute; top: 50%; left: 50%; color: #fff;
  width: 18px; height: 18px; margin: -9px 0 0 -9px;
  border: 2px solid currentColor; border-top-color: transparent;
  border-radius: 50%; animation: jv-spin .6s linear infinite;
}
@keyframes jv-spin { to { transform: rotate(360deg); } }

/* mobile tab switcher — hidden on desktop (two columns shown side by side) */
.jv-auth-tabs { display: none; }

/* ---------- Dashboard / profile / deactivate UX polish ---------- */
.jv-dash a:focus-visible,
.jv-dash button:focus-visible,
.jv-dash input:focus-visible,
.jv-dash select:focus-visible,
.jv-dash textarea:focus-visible,
.jv-dash summary:focus-visible {
  outline: 3px solid rgba(25, 103, 210, .45);
  outline-offset: 2px;
  border-radius: 8px;
}
.jv-dash a, .jv-dash button, .jv-dash .jv-btn, .jv-dash label { cursor: pointer; }
.jv-dash .jv-btn { min-height: 44px; }
.jv-dash-nav a { min-height: 44px; }
.jv-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; cursor: pointer;
}
.jv-btn.is-loading, .jv-dash .jv-btn[aria-busy="true"] { pointer-events: none; opacity: .82; }

@media (max-width: 980px) {
  /* mobile: stack columns and drive visibility with the tab switcher */
  .jv-auth-tabs {
    display: flex; gap: 6px; max-width: 420px; margin: 28px auto 0;
    background: var(--jv-input); border-radius: 12px; padding: 5px;
  }
  .jv-auth-tab {
    flex: 1; min-height: 44px; border: 0; border-radius: 9px; background: transparent;
    font-family: 'Jost', sans-serif; font-weight: 600; font-size: 15px; color: var(--jv-muted);
    transition: background .15s, color .15s;
  }
  .jv-auth-tab.is-active { background: #fff; color: var(--jv-blue); box-shadow: 0 2px 8px rgba(20,83,173,.10); }
  .jv-auth-wrap { gap: 0; padding-top: 18px; }
  .jv-auth-col { display: none; }
  .jv-auth-col.is-shown { display: block; }
}

/* candidate _layout (cand-*) auth pages: focus rings + touch targets */
.cand-btn { min-height: 44px; cursor: pointer; }
.cand-btn:focus-visible,
.cand-auth-form a:focus-visible,
.cand-auth-foot a:focus-visible,
.cand-field input:focus-visible {
  outline: 3px solid rgba(0, 153, 255, .45);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .jv-btn.is-loading::after { animation: none; }
  .jv-btn:hover, .cand-btn:hover { transform: none; }
  .jv-vscroll, .jv-hscroll { animation: none !important; }
}

/* ===== Single-card seamless auth (login/register) ===== */
.au-page { min-height: calc(100vh - 78px); display: flex; align-items: flex-start; justify-content: center; padding: 28px 14px 48px; background: linear-gradient(180deg,#f4f8ff 0%,#fff 220px); }
.au-card { width: 100%; max-width: 410px; background: #fff; border: 1px solid var(--jv-border); border-radius: 16px; padding: 22px 22px 24px; box-shadow: 0 16px 44px rgba(20,83,173,.10); }
.au-head { text-align: center; margin-bottom: 16px; }
.au-title { font-family: 'Jost',sans-serif; font-size: 22px; color: var(--jv-navy); margin: 0 0 4px; }
.au-sub { color: var(--jv-muted); font-size: 14px; margin: 0; }

.au-google { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px 16px; border: 1px solid var(--jv-border); border-radius: 10px; background: #fff; color: var(--jv-navy); font-weight: 600; font-size: 15px; text-decoration: none; transition: background .15s, box-shadow .15s; min-height: 46px; }
.au-google:hover { background: #f7faff; box-shadow: 0 4px 14px rgba(20,83,173,.10); color: var(--jv-navy); }
.au-or { display: flex; align-items: center; gap: 12px; margin: 14px 0; color: var(--jv-muted); font-size: 12px; }
.au-or::before,.au-or::after { content: ''; flex: 1; height: 1px; background: var(--jv-border); }

.au-tabs { position: relative; display: grid; grid-template-columns: 1fr 1fr; background: var(--jv-input); border-radius: 11px; padding: 4px; margin-bottom: 16px; }
.au-tab { position: relative; z-index: 2; border: 0; background: none; padding: 9px 0; font-size: 14.5px; font-weight: 600; color: var(--jv-muted); cursor: pointer; border-radius: 9px; min-height: 44px; }
.au-tab[aria-selected="true"] { color: var(--jv-blue); }
.au-tab-ind { position: absolute; z-index: 1; top: 4px; bottom: 4px; left: 4px; width: calc(50% - 4px); background: #fff; border-radius: 9px; box-shadow: 0 2px 8px rgba(20,83,173,.12); transition: transform .22s cubic-bezier(.4,0,.2,1); }
.au-card[data-active="register"] .au-tab-ind { transform: translateX(100%); }

.au-pane { display: none; }
.au-pane.is-active { display: block; animation: au-fade .2s ease; }
@keyframes au-fade { from { opacity:0; transform: translateY(4px);} to {opacity:1; transform:none;} }

.au-field { margin-bottom: 11px; }
.au-field > label { display: block; font-size: 12.5px; font-weight: 600; color: var(--jv-navy); margin-bottom: 5px; }
.au-opt { font-weight: 400; color: var(--jv-muted); }
.au-field input { width: 100%; padding: 11px 13px; border: 1px solid var(--jv-border); border-radius: 9px; font-size: 14.5px; color: var(--jv-navy); background: #fff; }
.au-field input:focus { outline: 0; border-color: var(--jv-blue); box-shadow: 0 0 0 3px rgba(25,103,210,.14); }
.au-field input.is-bad { border-color: #e06a5e; box-shadow: 0 0 0 3px rgba(224,106,94,.12); }
.au-pw { position: relative; }
.au-pw input { padding-right: 46px; }
.au-eye { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border: 0; background: none; color: var(--jv-muted); cursor: pointer; border-radius: 8px; }
.au-eye:hover { color: var(--jv-blue); }
.au-err { display: block; color: #c0392b; font-size: 12.5px; margin-top: 5px; min-height: 1px; }

.au-row { display: flex; justify-content: space-between; align-items: center; margin: 2px 0 16px; font-size: 13.5px; }
.au-check { display: inline-flex; align-items: center; gap: 7px; color: var(--jv-text); cursor: pointer; }
.au-tc { margin: 4px 0 16px; font-size: 13px; }
.au-tc a, .au-link { color: var(--jv-blue); text-decoration: none; }
.au-link:hover, .au-tc a:hover { text-decoration: underline; }

.au-submit.is-loading { position: relative; color: transparent; pointer-events: none; }
.au-submit.is-loading::after { content: ''; position: absolute; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%; animation: au-spin .7s linear infinite; }
@keyframes au-spin { to { transform: rotate(360deg);} }

.au-switch { text-align: center; margin: 16px 0 0; font-size: 14px; color: var(--jv-muted); }
.au-switch-btn { border: 0; background: none; color: var(--jv-blue); font-weight: 700; cursor: pointer; font-size: 14px; padding: 0; }
.au-switch-btn:hover { text-decoration: underline; }
.au-trust { text-align: center; margin: 20px 0 0; font-size: 12.5px; color: var(--jv-muted); }
.au-trust i { color: var(--jv-green); margin-right: 4px; }

@media (prefers-reduced-motion: reduce) { .au-tab-ind, .au-pane.is-active { transition: none; animation: none; } }
@media (max-width: 480px) { .au-card { padding: 24px 18px; border-radius: 14px; } .au-title { font-size: 22px; } }

/* Compact auth submit + tighter spacing */
.au-card .jv-btn-lg { padding: 12px 22px; font-size: 15px; }
.au-card .au-row { margin: 0 0 12px; }
.au-card .au-tc { margin: 2px 0 12px; }
.au-card .au-switch { margin-top: 12px; }
.au-card .au-trust { margin-top: 14px; }
@media (max-width: 480px) {
  .au-page { padding: 16px 12px 36px; }
  .au-card { padding: 18px 16px 20px; border-radius: 14px; }
  .au-title { font-size: 20px; }
  .au-sub { font-size: 13px; }
  .au-field { margin-bottom: 10px; }
  .au-field input { font-size: 16px; }   /* 16px avoids iOS zoom-on-focus */
  .jv-qr-drop { padding: 14px; border-radius: 14px; gap: 10px; }
  .jv-qr-drop-head { align-items: flex-start; gap: 10px; }
  .jv-qr-drop-head strong { font-size: 15px; }
  .jv-qr-drop-head p { font-size: 12px; }
  .jv-qr-drop-action { min-height: 44px; padding: 0 10px; }
}

/* ── Quick Register with AI + prefill ──────────────────────────────────── */
.jv-prefill-banner {
  display: flex; align-items: flex-start; gap: 12px;
  background: linear-gradient(135deg, #eef6ff 0%, #f0fdf4 100%);
  border: 1px solid #bfdbfe; border-radius: 12px;
  padding: 14px 16px; margin-bottom: 20px; font-size: 14px;
}
.jv-prefill-banner i { color: var(--jv-blue); font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.jv-prefill-banner strong { display: block; color: var(--jv-navy); font-size: 15px; margin-bottom: 2px; }
.jv-prefill-banner span { color: var(--jv-muted); }

.jv-prefill-missing {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px;
  padding: 12px 14px; margin-bottom: 14px; font-size: 14px; color: #92400e;
}
.jv-prefill-missing i { color: #d97706; margin-top: 2px; flex-shrink: 0; }

.jv-qr-ai { margin: 0 0 4px; }
.jv-qr-ai-btn {
  width: 100%; padding: 11px 16px; border-radius: 12px;
  border: 2px dashed var(--jv-blue); background: #f0f7ff;
  color: var(--jv-blue); font-size: 14px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center;
  gap: 8px; transition: background .15s, border-color .15s;
  white-space: nowrap; overflow: hidden;
}
.jv-qr-ai-btn:hover { background: #dbeafe; border-style: solid; }
.jv-qr-ai-btn i { font-size: 15px; flex-shrink: 0; }
.jv-qr-ai-sub { font-weight: 400; color: #4b83c8; font-size: 13px; }
.jv-qr-ai-hint { display: none; }

.jv-qr-ai-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff;
  color: var(--jv-blue); font-size: 12px; font-weight: 800;
  padding: 6px 11px; border-radius: 10px; white-space: nowrap; flex-shrink: 0;
  border: 1px solid rgba(25,103,210,.18);
  box-shadow: 0 6px 16px rgba(20,83,173,.10);
}

.jv-qr-upload { margin-top: 12px; }
.jv-qr-ai > .jv-qr-upload:first-child { margin-top: 0; }
.jv-qr-drop {
  position: relative;
  border: 1px solid rgba(25,103,210,.18);
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  background:
    radial-gradient(circle at 92% 0%, rgba(25,103,210,.14), transparent 32%),
    linear-gradient(135deg, #f2f8ff 0%, #eaf3ff 100%);
  transition: border-color .15s, background .15s, box-shadow .15s, transform .15s;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 14px 34px rgba(20,83,173,.13);
  overflow: hidden;
}
.jv-qr-drop::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(25,103,210,.24);
  border-radius: 12px;
  pointer-events: none;
}
.jv-qr-drop:hover,
.jv-qr-drop:focus-visible,
.jv-qr-drop.drag-over {
  border-color: rgba(25,103,210,.42);
  background:
    radial-gradient(circle at 92% 0%, rgba(25,103,210,.18), transparent 34%),
    linear-gradient(135deg, #edf6ff 0%, #e3efff 100%);
  box-shadow: 0 18px 42px rgba(20,83,173,.18), 0 0 0 4px rgba(25,103,210,.10);
  transform: translateY(-1px);
  outline: none;
}
.jv-qr-drop-head {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.jv-qr-drop-head strong { display: block; font-size: 16px; line-height: 1.2; color: var(--jv-navy); }
.jv-qr-drop-head p { margin: 3px 0 0; font-size: 13px; line-height: 1.3; color: var(--jv-muted); }
.jv-qr-drop-action {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(25,103,210,.18);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(20,83,173,.08);
}
.jv-qr-drop-action i {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(25,103,210,.10);
  font-size: 15px;
  color: var(--jv-blue);
}
.jv-qr-drop-action span { font-size: 14px; color: var(--jv-text); }
.jv-qr-drop-action span strong { color: var(--jv-navy); }
.jv-qr-drop small {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--jv-muted);
  margin-top: -2px;
  position: relative;
  z-index: 1;
}
.jv-qr-status { text-align: center; padding: 10px 0; font-size: 14px; color: var(--jv-blue); font-weight: 600; }
.jv-qr-err { text-align: center; padding: 8px 12px; font-size: 13.5px; color: #dc2626; background: #fef2f2; border-radius: 8px; margin-top: 8px; }

/* Missing contact fields highlight in Easy Apply modal */
.jv-ea-field-missing { border-color: #f59e0b !important; background: #fffbeb !important; box-shadow: 0 0 0 3px rgba(245,158,11,.15) !important; }

/* Slow AI sparkle motion */
.cand-main i.fa-wand-magic-sparkles,
.cand-auth-card i.fa-wand-magic-sparkles,
.au-page i.fa-wand-magic-sparkles {
  display: inline-block;
  transform-origin: 52% 58%;
  animation: cand-magic-sparkle 5.8s ease-in-out infinite;
  will-change: transform, filter;
}
@keyframes cand-magic-sparkle {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(25,103,210,0));
  }
  24% {
    transform: translateY(-1px) scale(1.03);
    filter: drop-shadow(0 0 5px rgba(25,103,210,.22));
  }
  44% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 2px rgba(25,103,210,.12));
  }
  68% {
    transform: translateY(-1px) scale(1.035);
    filter: drop-shadow(0 0 6px rgba(25,103,210,.24));
  }
}
@media (prefers-reduced-motion: reduce) {
  .cand-main i.fa-wand-magic-sparkles,
  .cand-auth-card i.fa-wand-magic-sparkles,
  .au-page i.fa-wand-magic-sparkles {
    animation: none !important;
  }
}
