@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --mc-amber: #ffbb46;
  --mc-amber-dark: #f59e0b;
  --mc-amber-deep: #d97706;
  --mc-cream: #fffaf0;
  --mc-ink: #1c1917;
  --mc-muted: #78716c;
  --mc-subtle: #a8a29e;
  --mc-line: #e7e5e4;
  --mc-bg: #fafaf9;
  --mc-white: #ffffff;
  --mc-radius: 12px;
  --mc-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Shell: split layout ─── */

.mc-auth-shell {
  height: 100vh;
  display: flex;
  width: 100%;
  background: var(--mc-white);
  overflow: hidden;
}

/* Prevent body scroll on auth pages */
body:has(.mc-auth-shell) {
  overflow: hidden;
  height: 100vh;
  margin: 0;
}

/* Hide dashboard footer injected by ws_footer() */
.mc-auth-shell ~ .footer,
.mc-auth-shell ~ footer,
.mc-auth-shell ~ div {
  /* display: none !important; */
}

/* ─── Left pane: form ─── */

.mc-auth-form-pane {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  background: var(--mc-white);
  position: relative;
  z-index: 2;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--mc-line) transparent;
  /* Single scroll zone — body must NOT also scroll */
  overscroll-behavior: contain;
}

.mc-auth-form-pane::-webkit-scrollbar {
  width: 5px;
}

.mc-auth-form-pane::-webkit-scrollbar-track {
  background: transparent;
}

.mc-auth-form-pane::-webkit-scrollbar-thumb {
  background: var(--mc-line);
  border-radius: 10px;
}

.mc-auth-form-scroller {
  width: 100%;
  max-width: 420px;
  padding: 2rem 2.5rem 2.5rem;
  margin: auto;
}

/* ─── Branding ─── */

.mc-auth-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.mc-auth-brand img {
  width: 200px;
  height: auto;
  display: block;
}

.mc-auth-tagline {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--mc-amber-dark);
  letter-spacing: 0.02em;
  margin: 0 0 2.5rem;
}

/* ─── Title area ─── */

.mc-auth-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--mc-ink);
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

.mc-auth-lead {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--mc-muted);
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* ─── Input groups with icons ─── */

.mc-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.mc-input-icon {
  position: absolute;
  left: 16px;
  bottom: 0;
  height: 52px;
  transform: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mc-subtle);
  pointer-events: none;
  transition: color var(--mc-transition);
}

.mc-input-icon svg {
  width: 20px;
  height: 20px;
}

.mc-input-wrapper:focus-within .mc-input-icon {
  color: var(--mc-amber-dark);
}

.mc-input-label {
  display: block;
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--mc-subtle);
  margin-bottom: 0.375rem;
}

/* ─── Override Colorlib inputs inside shell ─── */

.mc-auth-shell .limiter {
  width: 100%;
  margin: 0;
}

.mc-auth-shell .container-login100 {
  width: 100%;
  min-height: 0;
  display: block;
  padding: 0;
  background: transparent;
}

.mc-auth-shell .wrap-login100 {
  width: 100%;
  max-width: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.mc-auth-shell .login100-form-title {
  display: none;
}

.mc-auth-shell .wrap-input100 {
  width: 100%;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  transition: none;
}

.mc-auth-shell .wrap-input100:focus-within {
  border: none;
  box-shadow: none;
  background: transparent;
}

.mc-auth-shell .input100 {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 16px 0 48px;
  background: var(--mc-bg);
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--mc-ink);
  border-radius: var(--mc-radius);
  border: 1.5px solid var(--mc-line);
  outline: none;
  transition: border-color var(--mc-transition), box-shadow var(--mc-transition),
    background var(--mc-transition);
}

.mc-auth-shell .input100:focus {
  border-color: var(--mc-amber);
  box-shadow: 0 0 0 4px rgba(255, 187, 70, 0.18);
  background: var(--mc-white);
}

.mc-auth-shell .input100[type="password"] {
  padding-right: 48px;
}

.mc-auth-shell .focus-input100::before {
  display: none;
}

.mc-auth-shell .focus-input100::after {
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9375rem;
  color: var(--mc-subtle);
  padding-left: 48px;
  font-family: "Noto Sans", system-ui, sans-serif;
}

.mc-auth-shell .input100:focus + .focus-input100::after,
.mc-auth-shell .has-val.input100 + .focus-input100::after {
  opacity: 0;
  visibility: hidden;
}

/* ─── Password toggle ─── */

.mc-auth-shell .btn-show-pass {
  position: absolute;
  right: 16px;
  top: auto;
  bottom: 0;
  height: 52px;
  transform: none;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--mc-subtle);
  transition: color var(--mc-transition), transform 0.15s ease;
  cursor: pointer;
}

.mc-auth-shell .btn-show-pass:hover {
  color: var(--mc-amber-dark);
  transform: scale(1.1);
}

.mc-auth-shell .btn-show-pass .zmdi {
  font-size: 20px;
}

/* ─── Submit button ─── */

button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}


.mc-auth-shell .container-login100-form-btn {
  padding-top: 0.5rem;
}

.mc-auth-shell .wrap-login100-form-btn {
  border-radius: var(--mc-radius);
  overflow: hidden;
  transition: transform var(--mc-transition), box-shadow var(--mc-transition);
}

.mc-auth-shell .wrap-login100-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.mc-auth-shell .wrap-login100-form-btn:active {
  transform: translateY(0);
}

.mc-auth-shell .login100-form-bgbtn {
  background: linear-gradient(
    90deg,
    var(--mc-amber-dark),
    var(--mc-amber),
    var(--mc-amber-dark),
    var(--mc-amber)
  );
  left: -100%;
}

.mc-auth-shell .login100-form-btn {
  font-family: "Poppins", system-ui, sans-serif;
  text-transform: none;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: var(--mc-radius);
  height: 52px;
  gap: 8px;
}

.mc-auth-shell .login100-form-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--mc-transition);
}

.mc-auth-shell .wrap-login100-form-btn:hover .login100-form-btn svg {
  transform: translateX(4px);
}

/* ─── Footer links ─── */

.mc-auth-shell .text-center.p-t-115 {
  padding-top: 2rem !important;
}

.mc-auth-shell .txt1 {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--mc-muted);
}

.mc-auth-shell .txt2 {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--mc-amber-dark);
  font-weight: 600;
  transition: color var(--mc-transition);
}

.mc-auth-shell .txt2:hover {
  color: var(--mc-amber-deep);
}

/* ─── Divider ─── */

.mc-auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
}

.mc-auth-divider::before,
.mc-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--mc-line);
}

.mc-auth-divider span {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--mc-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ─── Validation alerts ─── */

.mc-auth-shell .alert-validate::before {
  font-family: "Noto Sans", system-ui, sans-serif;
  border-radius: 6px;
  font-size: 0.75rem;
  border-color: #ef4444;
  color: #ef4444;
  background: #fef2f2;
}

.mc-auth-shell .alert-validate::after {
  color: #ef4444;
  right: 14px;
}

/* ═══════════════════════════════════════════
   RIGHT PANEL: Image + overlay
   ═══════════════════════════════════════════ */

.mc-auth-visual {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100vh;
}

.mc-auth-visual__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mc-auth-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 25, 23, 0.3) 0%,
    rgba(28, 25, 23, 0.45) 40%,
    rgba(28, 25, 23, 0.75) 100%
  );
  z-index: 1;
}

.mc-auth-visual__content {
  position: relative;
  z-index: 2;
  padding: 3rem 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mc-auth-visual__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  width: fit-content;
}

.mc-auth-visual__badge svg {
  width: 18px;
  height: 18px;
  color: var(--mc-amber);
}

.mc-auth-visual__title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  max-width: 26rem;
}

.mc-auth-visual__subtitle {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  max-width: 24rem;
}

/* ─── Stats row ─── */

.mc-auth-visual__stats {
  display: flex;
  gap: 0;
  margin-top: 0.75rem;
}

.mc-auth-visual__stat {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  position: relative;
}

.mc-auth-visual__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.mc-auth-visual__stat:first-child {
  padding-left: 0;
}

.mc-auth-visual__stat-num {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mc-amber);
  line-height: 1.2;
}

.mc-auth-visual__stat-label {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.125rem;
  white-space: nowrap;
}

/* ─── Decorative dots pattern ─── */

.mc-auth-visual::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(
    circle,
    rgba(255, 187, 70, 0.35) 1.5px,
    transparent 1.5px
  );
  background-size: 16px 16px;
  z-index: 2;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */

@keyframes mc-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mc-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mc-auth-form-scroller {
  animation: mc-fadeInUp 0.6s ease-out both;
}

.mc-auth-visual__content {
  animation: mc-fadeInRight 0.7s 0.2s ease-out both;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  /* Shell becomes a single-column, full-height scroll container */
  .mc-auth-shell {
    flex-direction: column;
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
  }

  body:has(.mc-auth-shell) {
    overflow: hidden;
    height: 100dvh;
  }

  /* Form pane fills all available height and is the only scrolling element */
  .mc-auth-form-pane {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    align-items: center;
  }

  .mc-auth-visual {
    display: none;
  }

  .mc-auth-visual__content {
    padding: 2rem 1.5rem 1.5rem;
  }

  .mc-auth-visual__title {
    font-size: 1.35rem;
  }

  .mc-auth-visual__stats {
    display: none;
  }

  .mc-auth-form-scroller {
    max-width: 560px;
    padding: 2rem 1.5rem 3rem;
    /* width: 100%; */
  }

  .mc-auth-shell--register .mc-auth-form-pane {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .mc-auth-shell--register .mc-auth-visual {
    display: none;
  }

  .mc-auth-shell--register .mc-auth-form-scroller {
    max-width: 560px;
    padding: 2rem 1.5rem 3rem;
  }

  .mc-auth-shell--register {
    flex-direction: column;
    overflow: hidden;
    height: 100dvh;
  }
}

@media (max-width: 576px) {
  .mc-auth-visual {
    min-height: 200px;
    max-height: 260px;
  }

  .mc-auth-visual__content {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .mc-auth-visual__badge {
    display: none;
  }

  .mc-auth-visual__title {
    font-size: 1.15rem;
  }

  .mc-auth-visual__subtitle {
    font-size: 0.8125rem;
  }

  .mc-auth-form-scroller {
    padding: 2rem 2.5rem 2.5rem;
  }

  .mc-auth-title {
    font-size: 1.625rem;
  }

  .mc-auth-lead {
    font-size: 0.875rem;
  }

  .mc-auth-visual::before {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   REGISTRATION PAGE: wider form pane
   ═══════════════════════════════════════════ */

.mc-auth-shell--register .mc-auth-form-pane {
  flex: 1 1 58%;
}

.mc-auth-shell--register .mc-auth-visual {
  flex: 0 0 42%;
  max-width: 42%;
}

.mc-auth-form-scroller {
  max-width: 600px;
  padding: 2rem 2.5rem 2.5rem;
}

.mc-auth-shell--register .mc-auth-tagline {
  margin-bottom: 1.5rem;
}

.mc-auth-shell--register .mc-auth-lead {
  margin-bottom: 1.5rem;
}

/* Registration form overrides for bootstrap grid inside shell */
.mc-auth-shell--register .wrap-login100,
.mc-auth-shell--register .wrap-register100 {
  width: 100%;
  max-width: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.mc-auth-shell--register .row {
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 0.25rem;
}

.mc-auth-shell--register .row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

/* Registration inputs: no icons so reset left padding */
.mc-auth-shell--register .input100 {
  padding: 0 16px;
  height: 52px;
}

.mc-auth-shell--register .wrap-input100 input[type="password"] {
  padding-right: 48px;
}

.mc-auth-shell--register .focus-input100::after {
  padding-left: 16px;
  font-size: 0.875rem;
}

.mc-auth-shell--register .wrap-input100 {
  margin-bottom: 1rem;
  border-radius: var(--mc-radius);
}

.mc-auth-shell--register .form-group {
  margin-bottom: 1rem;
}

.mc-auth-shell--register .form-group label,
.mc-auth-shell--register .form-label {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mc-subtle);
  margin-bottom: 0.5rem;
  display: block;
}

.mc-auth-shell--register .form-control {
  border-radius: var(--mc-radius);
  border: 1.5px solid var(--mc-line);
  height: 52px;
  min-height: 52px;
  font-size: 0.9375rem;
  font-family: "Noto Sans", system-ui, sans-serif;
  background: var(--mc-bg);
  color: var(--mc-ink);
  padding: 0 1rem;
  transition: border-color var(--mc-transition), box-shadow var(--mc-transition),
    background var(--mc-transition);
  width: 100%;
}

.mc-auth-shell--register .form-control:focus {
  border-color: var(--mc-amber);
  box-shadow: 0 0 0 4px rgba(255, 187, 70, 0.18);
  background: var(--mc-white);
  outline: none;
}

/* ─── Select dropdowns — native <select> ─── */
.mc-auth-shell--register select.form-control {
  border-radius: var(--mc-radius) !important;
  border: 1.5px solid var(--mc-line) !important;
  height: 52px !important;
  min-height: 52px !important;
  font-size: 0.9375rem !important;
  font-family: "Noto Sans", system-ui, sans-serif !important;
  background-color: var(--mc-bg) !important;
  color: var(--mc-ink) !important;
  padding: 0 2.75rem 0 1rem !important;
  box-shadow: none !important;
  line-height: 52px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 16px !important;
  cursor: pointer;
  width: 100% !important;
  display: block !important;
}

/* ─── Bootstrap-Select WRAPPER — strip all Bootstrap default visuals ─── */
.mc-auth-shell--register .bootstrap-select {
  width: 100% !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ─── Bootstrap-Select button toggle ─── */
.mc-auth-shell--register .bootstrap-select .btn,
.mc-auth-shell--register .bootstrap-select > .dropdown-toggle {
  border-radius: var(--mc-radius) !important;
  border: 1.5px solid var(--mc-line) !important;
  height: 52px !important;
  min-height: 52px !important;
  font-size: 0.9375rem !important;
  font-family: "Noto Sans", system-ui, sans-serif !important;
  background-color: var(--mc-bg) !important;
  color: var(--mc-ink) !important;
  padding: 0 2.75rem 0 1rem !important;
  box-shadow: none !important;
  line-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  text-align: left !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 16px !important;
  transition: border-color var(--mc-transition), box-shadow var(--mc-transition), background-color var(--mc-transition) !important;
}

.mc-auth-shell--register select.form-control:focus,
.mc-auth-shell--register .bootstrap-select .btn:focus,
.mc-auth-shell--register .bootstrap-select > .dropdown-toggle:focus,
.mc-auth-shell--register .bootstrap-select.show > .dropdown-toggle {
  border-color: var(--mc-amber) !important;
  box-shadow: 0 0 0 4px rgba(255, 187, 70, 0.18) !important;
  background-color: var(--mc-white) !important;
  outline: none !important;
  /* Keep chevron visible on focus/open state */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 16px !important;
}

.mc-auth-shell--register .bootstrap-select .dropdown-toggle .filter-option {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--mc-ink);
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

/* Title placeholder (when nothing is selected) */
.mc-auth-shell--register .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: var(--mc-subtle);
  font-size: 0.9375rem;
  line-height: 1;
}

.mc-auth-shell--register .bootstrap-select .dropdown-toggle .caret,
.mc-auth-shell--register .bootstrap-select .dropdown-toggle::after {
  display: none !important;
}

.mc-auth-shell--register .bootstrap-select .dropdown-menu {
  border-radius: var(--mc-radius);
  border: 1.5px solid var(--mc-line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 0.375rem;
  margin-top: 4px;
}

.mc-auth-shell--register .bootstrap-select .dropdown-menu li a {
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--mc-ink);
  transition: background var(--mc-transition);
}

.mc-auth-shell--register .bootstrap-select .dropdown-menu li a:hover,
.mc-auth-shell--register .bootstrap-select .dropdown-menu li.active a,
.mc-auth-shell--register .bootstrap-select .dropdown-menu li.selected a {
  background: rgba(255, 187, 70, 0.12);
  color: var(--mc-ink);
}

.mc-auth-shell--register .bootstrap-select .bs-searchbox .form-control {
  border-radius: 8px;
  height: 36px;
  min-height: 36px;
  font-size: 0.8125rem;
}

.mc-auth-shell--register .my-5 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mc-auth-shell--register .login100-form-title {
  display: none;
}

/* Section dividers in registration */
.mc-form-section {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mc-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 0.5rem;
  margin: 1rem 0 0.625rem;
  border-bottom: 1px solid var(--mc-line);
}

.mc-form-section:first-of-type {
  margin-top: 0;
}

/* Registration: hide image panel earlier on medium screens */
@media (max-width: 1200px) {
  .mc-auth-shell--register .mc-auth-visual {
    display: none;
  }

  .mc-auth-shell--register .mc-auth-form-pane {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mc-auth-shell--register .mc-auth-form-scroller {
    max-width: 580px;
  }
}

/* ─── Subtle brand shape behind form ─── */

.mc-auth-form-pane::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 187, 70, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.mc-auth-form-pane::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 187, 70, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
