/* Extracted from login.html block 1. */
* {
  box-sizing: border-box;
}
.earn-top-bar {
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:90px;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  z-index:999999;
  pointer-events:none;
}
.earn-top-bar-logo,
.earn-top-bar-right {
  pointer-events:auto;
}
.earn-top-bar-logo {
  flex-shrink:0;
  text-decoration:none;
}
.earn-logo-tile {
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:65px;
  height:65px;
  transform-style:preserve-3d;
  perspective:800px;
  will-change:transform;
}
.earn-tile-bg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  transition:filter 0.2s ease;
}
.earn-tile-border {
  fill:#1c1c1c !important;
  stroke:rgba(255, 255, 255, 0.08);
  transition:stroke 0.2s ease;
}
.earn-tile-bg {
  background:none !important;
}
.earn-tile-logo {
  position:relative;
  z-index:1;
  width:66%;
  height:auto;
  display:block;
  transform:translateX(-2px);
  transition:filter 0.2s ease;
}
.earn-logo-tile:hover .earn-tile-border {
  stroke:rgba(89, 204, 128, 0.25);
}
.earn-top-bar-right {
  display:flex;
  align-items:center;
  gap:8px;
  position:relative;
  height:100%;
}
.earn-points-container {
  display:none;
}
body.logged-in .earn-points-container {
  display:flex;
  align-items:center;
}
.earn-auth-buttons {
  display:flex;
  align-items:center;
  gap:8px;
}
body.logged-in .earn-auth-buttons {
  display:none;
}
.points-display {
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 20px;
  background:linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border:1px solid #1a1a1a;
  border-radius:999px;
  font-size:14px;
  font-weight:500;
  color:#fff;
  text-decoration:none;
  transition:border-color 0.2s ease, background 0.2s ease;
}
.points-display:hover {
  background:linear-gradient(180deg, #252525 0%, #111 100%);
  border-color:rgba(255, 255, 255, 0.18);
}
.points-dot {
  width:10px;
  height:10px;
  border-radius:50%;
  background:#59CC80;
  box-shadow:0 0 8px rgba(90, 222, 134, 0.6);
}
.earn-auth-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 24px;
  font-size:14px;
  font-weight:600;
  font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-decoration:none;
  border-radius:100px;
  cursor:pointer;
  transition:all 0.2s ease;
  white-space:nowrap;
}
.earn-auth-btn-primary {
  background:#59CC80 !important;
  color:#000 !important;
  border:none !important;
}
.earn-auth-btn-primary:hover {
  background:#6BE898 !important;
  transform:translateY(-1px);
  box-shadow:0 0 20px rgba(107, 232, 152, 0.45);
}
.earn-auth-btn-secondary {
  background:#1c1c1c !important;
  color:#fff !important;
  border:1px solid rgba(255, 255, 255, 0.08) !important;
}
.earn-auth-btn-secondary:hover {
  border-color:rgba(255, 255, 255, 0.15) !important;
  transform:translateY(-1px);
}
.earn-menu-toggle {
  width:44px !important;
  height:44px !important;
  border-radius:50% !important;
  background:#1c1c1c !important;
  border:1px solid rgba(255, 255, 255, 0.08) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  cursor:pointer !important;
  flex-shrink:0 !important;
  transition:border-color 0.2s ease, transform 0.2s ease;
}
.earn-menu-toggle:hover {
  border-color:rgba(255, 255, 255, 0.15);
  transform:translateY(-1px);
}
.earn-menu-toggle-inner {
  position:relative;
  width:20px;
  height:14px;
}
.earn-menu-toggle-line {
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:all 0.25s ease;
}
.earn-menu-toggle-line:nth-child(1) {
  top:0;
}
.earn-menu-toggle-line:nth-child(2) {
  top:6px;
}
.earn-menu-toggle-line:nth-child(3) {
  top:12px;
}
.earn-menu-toggle.open .earn-menu-toggle-line:nth-child(1) {
  top:6px;
  transform:rotate(45deg);
}
.earn-menu-toggle.open .earn-menu-toggle-line:nth-child(2) {
  opacity:0;
}
.earn-menu-toggle.open .earn-menu-toggle-line:nth-child(3) {
  top:6px;
  transform:rotate(-45deg);
}
.earn-menu-overlay {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:999998;
  background:#000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity 0.25s ease, visibility 0.25s ease;
}
.earn-menu-overlay.open {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.earn-menu-container {
  height:100%;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:90px 70px;
}
.earn-menu-cards {
  display:grid;
  grid-template-columns:repeat(3, 275px);
  grid-template-rows:repeat(2, 275px);
  gap:16px;
}
.earn-menu-card,
button.earn-menu-card {
  font-family:'Inter', inherit;
  text-align:center;
  border-radius:20px;
  padding:40px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  cursor:pointer;
  background:#1c1c1c;
  border:1px solid rgba(255, 255, 255, 0.08);
  opacity:0;
  transition:opacity 0.25s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  outline:none;
  pointer-events:auto;
  transform-style:preserve-3d;
  will-change:transform;
}
.earn-menu-overlay.open .earn-menu-card {
  opacity:1;
}
.earn-menu-card:hover {
  border-color:rgba(89, 204, 128, 0.15);
  box-shadow:0 0 30px rgba(89, 204, 128, 0.08), 0 20px 50px rgba(0, 0, 0, 0.5);
}
.earn-menu-card-icon {
  width:72px;
  height:72px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  background:rgba(255, 255, 255, 0.05);
  border:1px solid rgba(255, 255, 255, 0.06);
  color:#59CC80;
  transition:background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.earn-menu-card-icon svg {
  width:32px;
  height:32px;
  fill:currentColor;
}
.earn-menu-card:hover .earn-menu-card-icon {
  background:rgba(89, 204, 128, 0.12);
  border-color:rgba(89, 204, 128, 0.25);
  box-shadow:0 0 24px rgba(107, 232, 152, 0.25);
  color:#6Be898;
}
.earn-menu-card-title {
  font-size:16px;
  font-weight:600;
  margin-bottom:14px;
  display:flex;
  align-items:center;
  gap:4px;
}
.earn-menu-card-title-arrow {
  display:inline-flex;
  align-items:center;
  transition:transform 0.2s ease;
}
.earn-menu-card-title-arrow svg {
  height:10px;
  width:auto;
  fill:currentColor;
  display:block;
}
.earn-menu-card:hover .earn-menu-card-title-arrow {
  transform:translateX(3px);
}
.earn-menu-card-desc {
  font-size:13px;
  font-weight:400;
  color:#9ca3af;
  text-align:center;
  line-height:1.5;
  max-width:220px;
}
button.earn-menu-card {
  font-size:inherit;
  width:100%;
}
#earn-cursor-glow {
  position:fixed;
  width:400px;
  height:400px;
  border-radius:50%;
  pointer-events:none;
  z-index:1000000;
  background:radial-gradient(circle, rgba(89, 204, 128, 0.08) 0%, rgba(89, 204, 128, 0.03) 30%, transparent 65%);
  transform:translate(-50%, -50%);
  mix-blend-mode:screen;
  opacity:0;
  transition:opacity 0.35s ease-out;
}
#earn-cursor-glow.active {
  opacity:1;
}
#earn-contact-overlay {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0, 0, 0, 0.8);
  backdrop-filter:blur(8px);
  z-index:1000000;
  align-items:center;
  justify-content:center;
  padding:1rem;
}
#earn-contact-overlay.open {
  display:flex;
}
#earn-contact-popup {
  background:#111;
  border:1px solid #222;
  border-radius:20px;
  padding:2.5rem 2rem;
  width:100%;
  max-width:480px;
  position:relative;
  box-shadow:0 0 60px rgba(57, 214, 140, 0.1), 0 24px 48px rgba(0, 0, 0, 0.7);
  animation:popupIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popupIn {
  from {
    opacity:0;
    transform:scale(0.92) translateY(14px)
  }
  to {
    opacity:1;
    transform:scale(1) translateY(0)
  }
}
#earn-contact-close {
  position:absolute;
  top:1rem;
  right:1rem;
  background:#1e1e1e;
  border:none;
  color:#666;
  width:30px;
  height:30px;
  border-radius:50%;
  font-size:1rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.15s, color 0.15s;
}
#earn-contact-close:hover {
  background:#2a2a2a;
  color:#fff;
}
.ep-eyebrow {
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:#39d68c;
  margin-bottom:.35rem
}
.ep-title {
  font-size:1.8rem;
  font-weight:800;
  color:#fff;
  line-height:1.1;
  margin-bottom:.35rem
}
.ep-title span {
  color:#39d68c
}
.ep-sub {
  font-size:.85rem;
  color:#666;
  margin-bottom:1.5rem;
  line-height:1.5
}
.ep-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.65rem
}
.ep-group {
  margin-bottom:.65rem
}
.ep-group label {
  display:block;
  font-size:.72rem;
  font-weight:600;
  color:#888;
  margin-bottom:.3rem;
  text-transform:uppercase;
  letter-spacing:.05em
}
.ep-group input,
.ep-group textarea,
.ep-group select {
  width:100%;
  padding:.65rem .85rem;
  background:#181818;
  border:1.5px solid #252525;
  border-radius:10px;
  color:#fff;
  font-size:.88rem;
  font-family:inherit;
  outline:none;
  transition:border-color .15s, box-shadow .15s;
  appearance:none;
  box-sizing:border-box
}
.ep-group input::placeholder,
.ep-group textarea::placeholder {
  color:#3a3a3a
}
.ep-group input:focus,
.ep-group textarea:focus,
.ep-group select:focus {
  border-color:#39d68c;
  box-shadow:0 0 0 3px rgba(57, 214, 140, 0.1)
}
.ep-group textarea {
  resize:vertical;
  min-height:85px
}
#ep-submit {
  width:100%;
  padding:.85rem;
  background:#39d68c;
  color:#000;
  font-weight:800;
  font-size:.92rem;
  border:none;
  border-radius:50px;
  cursor:pointer;
  margin-top:.4rem;
  transition:background .15s, transform .1s;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.5rem
}
#ep-submit:hover {
  background:#4ae89d
}
#ep-submit:disabled {
  opacity:.45;
  cursor:not-allowed
}
.ep-spinner {
  width:14px;
  height:14px;
  border:2px solid rgba(0, 0, 0, 0.25);
  border-top-color:#000;
  border-radius:50%;
  animation:ep-spin .65s linear infinite;
  display:none
}
#ep-submit.loading .ep-spinner {
  display:block
}
#ep-submit.loading .ep-btn-text {
  display:none
}
@keyframes ep-spin {
  to {
    transform:rotate(360deg)
  }
}
.ep-alert {
  padding:.7rem .9rem;
  border-radius:10px;
  font-size:.82rem;
  font-weight:600;
  margin-top:.65rem;
  display:none
}
.ep-alert.show {
  display:block
}
.ep-success {
  background:rgba(57, 214, 140, 0.1);
  color:#39d68c;
  border:1px solid rgba(57, 214, 140, 0.2)
}
.ep-error {
  background:rgba(239, 68, 68, 0.08);
  color:#f87171;
  border:1px solid rgba(239, 68, 68, 0.18)
}
@media(max-width:900px) {
  .earn-menu-cards {
    grid-template-columns:repeat(2, 275px)
  }
}
@media(max-width:600px) {
  .earn-top-bar {
    height:72px;
    padding:0 16px
  }
  .earn-logo-tile {
    width:56px;
    height:56px
  }
  .earn-auth-buttons {
    gap:8px
  }
  .earn-menu-container {
    align-items:flex-start;
    justify-content:flex-start;
    padding:88px 16px 40px;
    overflow-y:auto;
    height:100%;
    box-sizing:border-box
  }
  .earn-menu-cards {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    grid-template-rows:repeat(3, 180px);
    gap:12px;
    width:100%
  }
  .earn-menu-card, button.earn-menu-card {
    border-radius:16px;
    padding:0;
    width:100%;
    height:180px
  }
  .earn-menu-card-icon {
    width:48px;
    height:48px;
    border-radius:12px;
    margin-bottom:10px;
    flex-shrink:0
  }
  .earn-menu-card-title {
    font-size:13px;
    margin-bottom:5px
  }
  .earn-menu-card-desc {
    font-size:10.5px;
    line-height:1.35;
    max-width:90%;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical
  }
  #earn-contact-popup {
    padding:1.75rem 1.25rem
  }
  .ep-row {
    grid-template-columns:1fr
  }
  .ep-title {
    font-size:1.45rem
  }
}

/* Extracted from login.html block 2. */
/* Form element font override (beats UA stylesheet) */
input,
input[type],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="submit"],
textarea,
select,
button,
option {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
::placeholder,
::-webkit-input-placeholder,
::-moz-placeholder {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
.login-card,
.login-card * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.login-card {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/* -- Hide WP chrome -- */
header,
.site-header,
#masthead,
footer,
.site-footer,
#colophon,
.wp-site-blocks > header,
.entry-header,
.page-header,
hr,
.wp-block-separator,
.wp-block-post-title {
  display: none !important;
}
.entry-content,
.page-content,
.site-content,
.wp-site-blocks {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
/* Force WP wrappers to fill body so .login-card centers properly without
     being squeezed by main.has-global-padding (clamp(30px,5vw,50px) each side).
     The alignfull rule from twentytwentyfive theme applies negative margins
     equal to the global padding to break out of constrained parents - kill
     those too or the card lands ~30px to the left of viewport on mobile. */
.wp-site-blocks,
main.wp-block-group,
main.has-global-padding,
.wp-block-group.has-global-padding,
.wp-block-group.alignfull,
.wp-block-post-content,
.entry-content.alignfull,
.alignfull {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.wp-site-blocks,
.wp-block-post-content,
.wp-block-group,
.wp-block-group.is-layout-constrained,
.wp-block-group.is-layout-flow,
.wp-block-post-content > * {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
/* Override is-layout-constrained max-width that limits children to content-size */
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100% !important;
}
html,
body {
  background: #000000 !important;
}
body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 100px 0 60px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}
/* -- Ambient glow -- */
.ambient {
  position: fixed;
  top: 0;
  left: 50%;
  width: 800px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(89, 204, 128, 0.06) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  animation: ambIn 1s ease-out 0.6s forwards;
}
@keyframes ambIn {
  to {
    opacity: 1;
  }
}
/* -- Card -- */
.login-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 40px 24px 60px 24px !important;
}
/* -- Logo -- */
.logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.login-logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.3s forwards;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(89, 204, 128, 0.3));
}
.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(89, 204, 128, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.3s forwards, logoPulse 2s ease-in-out 0.9s infinite;
}
@keyframes logoPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.6;
  }
}
/* -- Title / Subtitle -- */
.login-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.4s forwards;
}
.login-subtitle {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.5s forwards;
}
.login-form {
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.6s forwards;
}
.login-footer {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.75s forwards;
}
.login-footer a {
  color: #59CC80;
  text-decoration: none;
  font-weight: 500;
}
.login-footer a:hover {
  color: #6bd690;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------------
     UM OVERRIDES - ULTRA-MINIMAL
     ----------------------------------------
     Same approach as sign-up: ONLY style leaf
     elements (inputs, labels, buttons). NO CSS
     overrides on containers. Container cleanup
     handled via JS without !important.
     ---------------------------------------- */
/* Top-level UM wrapper only */
.login-form .um,
.login-form div.um,
.login-form .um-form,
.login-form div.um-form,
.login-form .um-login,
.login-form .um-register {
  font-family: 'Inter', sans-serif !important;
  padding: 0 !important;
  max-width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  overflow: visible !important;
  background: transparent !important;
}
.login-form .um-header {
  display: none !important;
}
/* Hide original NSL buttons - replaced by custom .earn-social-btn */
.login-form .um-social-login-buttons,
.login-form .nsl-container {
  display: none !important;
}
/* Hide NSL's own OR separator - we inject our own above the UM form */
#nsl-custom-login-form-1 .nsl-separator {
  display: none !important;
}
/* -- Our full-width OR separator (sits in .login-form above the UM widget) -- */
.earn-or-sep {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 16px 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}
.earn-or-sep::before,
.earn-or-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
/* -- Custom social login buttons -- */
.earn-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 4px;
}
.earn-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  background: #1a1a1a;
  border-radius: 14px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  border: none;
  box-shadow: none;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.15s ease;
}
.earn-social-btn:hover {
  opacity: 0.78;
}
.earn-social-btn:active {
  opacity: 0.55;
}
.earn-social-btn span {
  letter-spacing: -0.1px;
}
.earn-social-icon {
  flex-shrink: 0;
  display: block;
}
.earn-social-apple .earn-social-icon {
  width: 18px;
  height: 22px;
  fill: #fff;
}
.earn-social-google .earn-social-icon {
  width: 20px;
  height: 20px;
}
/* Labels - only <label> elements */
.login-form .um label,
.login-form .um .um-field-label label {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}
/* Text inputs - only <input> elements */
.login-form .um input[type="text"],
.login-form .um input[type="email"],
.login-form .um input[type="password"],
.login-form .um input[type="tel"] {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: #fff !important;
  background: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  outline: none !important;
  box-shadow: none !important;
  width: 100% !important;
  -webkit-appearance: none !important;
  transition: border-color 0.2s ease, background 0.2s ease !important;
}
.login-form .um input[type="text"]:focus,
.login-form .um input[type="email"]:focus,
.login-form .um input[type="password"]:focus,
.login-form .um input[type="tel"]:focus {
  border-color: #59CC80 !important;
  background: #1a1a1a !important;
  box-shadow: none !important;
  outline: none !important;
}
.login-form .um input::placeholder {
  font-family: 'Inter', sans-serif !important;
  color: rgba(255, 255, 255, 0.3) !important;
}
.login-form .um input:-webkit-autofill,
.login-form .um input:-webkit-autofill:hover,
.login-form .um input:-webkit-autofill:focus,
.login-form .um input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
  -webkit-text-fill-color: #fff !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
/* Field spacing */
.login-form .um .um-field {
  margin-bottom: 16px !important;
  padding: 0 !important;
}
/* Submit button */
.login-form .um input[type="submit"],
.login-form .um .um-button,
.login-form .um a.um-button {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #000000 !important;
  background: #59CC80 !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 32px !important;
  width: 100% !important;
  cursor: pointer !important;
  text-transform: none !important;
  margin-top: 8px !important;
  transition: all 0.2s ease !important;
}
.login-form .um input[type="submit"]:hover,
.login-form .um .um-button:hover {
  background: #6BE898 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 0 20px rgba(107, 232, 152, 0.45) !important;
}
.login-form .um input[type="submit"]:active,
.login-form .um .um-button:active {
  background: #7DF0A8 !important;
  transform: translateY(0) !important;
  box-shadow: 0 0 12px rgba(107, 232, 152, 0.3) !important;
}
/* --- Hide UM's native checkbox - we replace it via JS --- */
.login-form .um .um-field-checkbox,
.login-form .um .um-field-remember,
.login-form .um [class*="remember"],
.login-form .um .um-remember-me,
.login-form .um .um-field-type_checkbox,
.login-form .um .um-misc-form-condition {
  display: none !important;
}
/* --- Custom "Keep me signed in" checkbox row --- */
.earn-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  margin-bottom: 20px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.earn-checkbox-row .earn-cb-box {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  transition: all 0.15s ease;
}
.earn-checkbox-row:hover .earn-cb-box {
  border-color: rgba(255, 255, 255, 0.25);
}
.earn-checkbox-row.checked .earn-cb-box {
  background: #59CC80;
  border-color: #59CC80;
}
.earn-checkbox-row.checked .earn-cb-box::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.earn-cb-content {
  flex: 1;
}
.earn-cb-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 22px !important;
}
/* Links (non-social) */
.login-form .um a:not([class*="social"]) {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 13px !important;
  text-decoration: none !important;
}
.login-form .um a:not([class*="social"]):hover {
  color: #59CC80 !important;
}
/* Forgot password / alt links */
.login-form .um .um-col-alt,
.login-form .um .um-forgot-pass,
.login-form .um .um-col-alt-b {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  float: none !important;
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 13px !important;
  margin-top: 12px !important;
}
/* UM notice/error - style text only, don't touch containers */
.login-form .um .um-notice {
  font-family: 'Inter', sans-serif !important;
  border-radius: 10px !important;
}
.login-form .um .um-field-error p,
.login-form .um .um-field-error span {
  color: #EF4444 !important;
  font-size: 13px !important;
}
/* Dividers */
.login-form .um .um-divider,
.login-form [class*="divider"] {
  color: rgba(255, 255, 255, 0.25) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
}
.login-form .um .um-divider::before,
.login-form .um .um-divider::after,
.login-form [class*="divider"]::before,
.login-form [class*="divider"]::after {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}
/* reCAPTCHA */
.login-form .g-recaptcha {
  transform: scale(0.95);
  transform-origin: left center;
}
.login-form .g-recaptcha > div > div {
  filter: invert(0.85) hue-rotate(180deg) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
/* Column / Row resets - layout only */
.login-form .um .um-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.login-form .um .um-col-1,
.login-form .um .um-col-2,
.login-form .um .um-col-3 {
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
}
.login-form .um .um-col-alt,
.login-form .um .um-col-alt-b {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  float: none !important;
}
/* -- Responsive -- */
@media (max-width: 480px) {
  .login-card {
    padding: 0 20px;
  }
  .logo-wrap {
    margin-bottom: 36px;
  }
  .login-logo {
    width: 120px;
  }
  .login-title {
    font-size: 22px;
  }
  .login-subtitle {
    margin-bottom: 32px;
  }
}

/* Extracted from login.html block 3. */
.um-8429.um {
  max-width: 100% !important;
  width: 100% !important;
}
.um-8429.um .um-form,
.um-8429.um form {
  max-width: 100% !important;
  width: 100% !important;
}
