.registration-consents {
  display: grid;
  gap: 1rem;
}

.registration-choice input {
  box-sizing: border-box;
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: #034638;
}

.registration-choice {
  padding: 1rem;
  border-radius: 0.85rem;
  background: #f3f7f5;
}

.registration-choice legend {
  color: #34443e;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.registration-choice--required legend::after,
.required-label::after {
  color: #b42318;
  content: ' *';
}

.regulation-link {
  color: #047857;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.regulation-link[aria-disabled="true"] {
  color: #60716b;
  cursor: not-allowed;
}

.registration-choice__options {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.registration-choice__options label {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(3, 70, 56, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #34443e;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
}

.registration-choice__options input { flex: 0 0 1rem; }

.registration-choice__message {
  margin: 0.75rem 0 0;
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.field-validation-error {
  margin: 0.35rem 0 0;
  color: #b42318;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.field-label-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 600;
}

.guardian-import {
  padding: 0;
  border: 0;
  background: transparent;
  color: #047857;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.guardian-import:hover { color: #034638; }

@media (max-width: 480px) {
  .field-label-row { align-items: flex-start; }
  .guardian-import { max-width: 8.5rem; text-align: right; }
}

#request-otp-btn:disabled {
  background: #94a3b8;
  color: rgba(255, 255, 255, 0.9);
  cursor: not-allowed;
  opacity: 1;
}

.otp-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.otp-modal.hidden { display: none; }

.otp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 23, 19, 0.72);
  backdrop-filter: blur(5px);
}

.otp-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 29rem);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.otp-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f3f7f5;
  color: #34443e;
  cursor: pointer;
}

.otp-modal__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: #e6f2f0;
  color: #034638;
  font-size: 1.35rem;
}

.otp-modal h3 { margin: 0; color: #10211c; font-size: 1.45rem; font-weight: 900; }
.otp-modal p { margin: 0.5rem 0 1.5rem; color: #60716b; font-size: 0.9rem; line-height: 1.55; }
.otp-modal label { display: block; margin-bottom: 0.35rem; color: #34443e; font-size: 0.85rem; font-weight: 700; }
.otp-modal #otpCode { text-align: center; font-size: 1.25rem; letter-spacing: 0.35em; }

.otp-modal__confirm,
.otp-modal__cancel { width: 100%; border: 0; border-radius: 0.75rem; cursor: pointer; font: inherit; font-weight: 800; }
.otp-modal__confirm { margin-top: 1.25rem; padding: 0.85rem 1rem; background: #034638; color: #fff; }
.otp-modal__confirm i { margin-right: 0.4rem; }
.otp-modal__cancel { margin-top: 0.75rem; padding: 0.65rem 1rem; background: transparent; color: #60716b; font-size: 0.85rem; }
