.elementor-5055 .elementor-element.elementor-element-b995889{--display:flex;}/* Start custom CSS for html, class: .elementor-element-37bf8ac *//* =====================================================
   ACUC FORGOT + RESET PASSWORD — APPLE GLASS (LIGHT/DARK)
   (Matches your login theme tokens + glass card)
===================================================== */

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body{
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

/* ---------- Theme Variables (same as login) ---------- */
body.theme-dark {
  --bg: #060914;
  --bg-soft: rgba(255,255,255,0.04);
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: #a1a9bd;
  --accent: #4f6cff;
}

body.theme-light {
  --bg: #eef2ff;
  --bg-soft: #f8fafc;
  --card: #ffffff;
  --border: rgba(15,23,42,0.10);
  --text: #0f172a;
  --muted: #475569;
  --accent: #4f6cff;
}

/* ---------- Full-viewport background (same vibe as login) ---------- */
body{
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(120vw 80vh at 50% -20vh, rgba(79,108,255,0.22), transparent 60%),
    radial-gradient(90vw 70vh at 80% 30vh, rgba(14,165,233,0.16), transparent 65%),
    var(--bg);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ---------- Full-bleed fix for Elementor (kills side whitespace) ---------- */
.acuc-auth{
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  color: var(--text);
}

/* ---------- Card ---------- */
.acuc-auth-card{
  width: 100%;
  max-width: 440px;
  padding: 48px 44px;

  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);

  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Header */
.acuc-auth-header{ margin-bottom: 26px; }
.acuc-auth-title{
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text) !important;
}
.acuc-auth-legal{
  margin: 0;
  font-size: 14px;
  color: var(--muted) !important;
}

body.theme-dark .acuc-auth-title{
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* Fields */
.acuc-field{ margin-bottom: 18px; }
.acuc-field label{
  display:block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted);
}
.acuc-field input{
  width: 100%;
  height: 52px;
  padding: 0 16px;

  border-radius: 14px;
  border: 1px solid var(--border);

  background: var(--bg-soft);
  color: var(--text);

  font-size: 15px;
}
.acuc-field input:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,108,255,0.25);
}

/* Password wrap + toggle */
.acuc-password-wrap{ position: relative; }
.acuc-password-wrap input{ padding-right: 52px; }

.acuc-password-toggle{
  position:absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);

  width: 40px;
  height: 40px;
  border-radius: 12px;

  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
}

/* Primary button */
.acuc-btn-primary{
  width: 100%;
  height: 54px;
  margin-top: 8px;

  border-radius: 16px;
  border: none;

  background: var(--accent);
  color: #fff;

  font-size: 15px;
  font-weight: 650;
  cursor: pointer;

  box-shadow: 0 18px 50px rgba(79,108,255,0.22);
}
.acuc-btn-primary:disabled{
  opacity: .65;
  cursor: not-allowed;
  box-shadow: none;
}

/* Links row */
.acuc-auth-links{
  display:flex;
  justify-content: space-between;
  margin-top: 16px;
  gap: 12px;
}
.acuc-auth-links a{
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.acuc-auth-links a:hover{ text-decoration: underline; }

/* Alerts */
.acuc-auth-error,
.acuc-auth-success{
  display:none;
  margin-top: 14px;
  padding: 12px;
  font-size: 14px;
  border-radius: 12px;
}

.acuc-auth-error{
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.35);
  color: #dc2626;
}
.acuc-auth-success{
  background: rgba(16,185,129,0.14);
  border: 1px solid rgba(16,185,129,0.30);
  color: #10b981;
}

/* =====================================================
   PASSWORD RULES (same behavior as registration)
===================================================== */
.acuc-password-rules{
  margin: 12px 0 2px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.acuc-password-rules li{
  position: relative;
  padding-left: 18px;
  opacity: .88;
  transition: opacity .15s ease, color .15s ease;
}

.acuc-password-rules li::before{
  content: "•";
  position:absolute;
  left: 0;
  top: 0;
  color: rgba(79,108,255,.95);
}

/* unmet */
.acuc-password-rules li.is-unmet{ color: var(--muted); }

/* met */
.acuc-password-rules li.is-met{
  color: color-mix(in srgb, var(--text) 82%, transparent);
  opacity: 1;
}
.acuc-password-rules li.is-met::before{
  content: "✓";
  color: rgba(79,108,255,.95);
}

/* Small helper line */
.acuc-help{
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

/* =====================================================
   THEME TOGGLE (same as login)
===================================================== */
.acuc-theme-toggle{
  position: fixed;
  top: 24px;
  right: 24px;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  border: 1px solid var(--border);

  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  cursor: pointer;
  z-index: 1000;
}

.acuc-theme-toggle svg{
  width: 20px;
  height: 20px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.8;
  position: absolute;
  transition: opacity .25s ease, transform .25s ease;
}

/* Icon visibility */
body.theme-dark .icon-moon{ opacity: 1; transform: rotate(0deg) scale(1); }
body.theme-dark .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }

body.theme-light .icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }
body.theme-light .icon-moon{ opacity: 0; transform: rotate(90deg) scale(0.5); }

.acuc-theme-toggle:hover{
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}/* End custom CSS */