/* ── Grid ── */
.base-register-form .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.base-register-form .col-md-4,
.base-register-form .col-sm-6 {
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .base-register-form .col-sm-6 { width: 50%; }
}

@media (min-width: 768px) {
  .base-register-form .col-md-4 { width: 33.333%; }
}

/* ── Hidden utility ── */
.base-register-form .d-none { display: none !important; }

/* ── Form items ── */
.base-register-form .form-item {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.base-register-form .form-item label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.6;
}

.base-register-form .form-item input,
.base-register-form .form-item select {
  background: transparent;
  border: none;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  padding: 8px 0;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0.8;
  transition: opacity 0.2s, border-color 0.2s;
  width: 100%;
}

.base-register-form .form-item input:focus,
.base-register-form .form-item select:focus {
  opacity: 1;
}

/* ── Consent ── */
.base-register-form .checkbox-group {
  margin: 28px 0;
}

.base-register-form .checkbox-label {
  display: block;
  font-size: 11px;
  line-height: 1.7;
  opacity: 0.6;
  margin-bottom: 12px;
}

.base-register-form .toggle-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.8;
}

.base-register-form .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.base-register-form .checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: currentColor;
}

.base-register-form .checkbox label {
  font-size: 13px;
  cursor: pointer;
}

/* ── Submit ── */
.base-register-form .submit-container {
  margin-top: 8px;
}

.base-register-form .button.submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 0;
}

.base-register-form .button.submit:hover {
  background: currentColor;
}

.base-register-form .button.submit:hover span,
.base-register-form .button.submit:hover svg {
  color: var(--wp--preset--color--base, #fff);
  filter: invert(1);
}

.base-register-form .arrow {
  flex-shrink: 0;
}
