body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1c1c1c;
  color: #fff;
  margin: 0;
  min-height: 100vh;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: #fff;
}

/* ── Page wrapper ── */
.auth-page {
  display: flex;
  min-height: 100vh;
}

/* ============================================================
   LEFT PANEL
   ============================================================ */
.auth-left {
  position: relative;
  flex: 0 0 45%;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 52px;
  background: #161616;
  border-right: 1px solid var(--border-subtle);
  overflow: hidden;
}

/* Orange glow in the top-right corner */
.left-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 92, 5, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.logo-img {
  width: 130px;

}

.left-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.left-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.left-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.left-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 32px;
}

/* Feature list */
.left-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.left-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(242, 92, 5, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 13px;
  flex-shrink: 0;
}

.left-footer {
  font-size: 11px;
  color: var(--text-faint);
  margin: 0;
}

/* ============================================================
   RIGHT PANEL
   ============================================================ */
.auth-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(24px, 6vw, 72px);
}

.logo-img-mobile {
  width: 110px;
}

/* ── Form card ── */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -.3px;
}

.form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── Inputs ── */
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 6px;
}

.x-input {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--border-medium) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}

.x-input::placeholder {
  color: var(--text-faint);
}

.x-input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(242, 92, 5, .18) !important;
  outline: none;
  z-index: 1;
}

.input-group {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: 8px !important;
  transition: border-color .2s, box-shadow .2s;
}

.input-group:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(242, 92, 5, .18);
}

.input-group .x-input {
  background: transparent !important;
  border: none !important;
  border-radius: 8px 0 0 8px !important;
  box-shadow: none !important;
}

.input-group .x-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

.toggle-pw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  background: transparent !important;
  border: none !important;
  border-left: 1px solid var(--border-medium) !important;
  border-radius: 0 8px 8px 0 !important;
  color: var(--text-muted) !important;
  transition: color .2s, background .2s;
}

.toggle-pw:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
}

.btn-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(242, 92, 5, .28);
  transition: transform .2s, box-shadow .2s;
}

.btn-x:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(242, 92, 5, .4);
}

.req-hint {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 4px;
}

.req-list {
  list-style: none;
  padding: 0;
  font-size: 11px;
  color: var(--text-faint);
}

.valid {
  color: var(--status-info-text);
}

.invalid {
  color: var(--status-warning-text)
}

#alerts .alert {
  border-radius: 8px;
  font-size: 13px;
}

@media (max-width: 991.98px) {
  .auth-right {
    padding: 36px 20px;
    justify-content: flex-start;
    padding-top: 48px;
  }

  .form-card {
    max-width: 100%;
  }
}