.extNotice{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  padding:18px 18px;
  border-radius:16px;

  background:
    radial-gradient(900px 300px at 10% 10%, rgba(63,182,200,.20), transparent 55%),
    linear-gradient(180deg, rgba(63,182,200,.14), rgba(63,182,200,.08));

  border:1px solid rgba(63,182,200,.35);
  box-shadow: 0 14px 34px rgba(8,34,58,.08);
}

.extNotice__left{
  min-width: 240px;
  flex: 1 1 auto;
}

.extNotice__title{
  display:flex;
  align-items:center;
  gap:10px;

  font-weight:800;
  color:#0b2a45;
  margin:0 0 6px;
}

.extNotice__icon{
  width:30px;
  height:30px;
  border-radius:10px;
  display:grid;
  place-items:center;

  background: rgba(63,182,200,.20);
  color:#0b2a45;
  font-size:16px;
}

.extNotice__text{
  color: rgba(11,42,69,.78);
  line-height:1.55;
  font-size:14px;
  margin:0;
  max-width: 68ch;
}

.extNotice__actions{
  display:flex;
  gap:10px;
  flex: 0 0 auto;
  flex-wrap:wrap;
  align-items:center;
}

.extNotice__btn{
  height:44px;
  padding:0 16px;
  border-radius:12px;

  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;

  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
}

.extNotice__btn:hover{ transform: translateY(-1px); }

.extNotice__btn--primary{
  background:#3fb6c8;
  color:#fff;
  box-shadow: 0 12px 22px rgba(63,182,200,.22);
}

.extNotice__btn--primary:hover{
  box-shadow: 0 16px 28px rgba(63,182,200,.28);
}

.extNotice__btn--ghost{
  background: rgba(255,255,255,.65);
  color:#0b2a45;
  border-color: rgba(11,42,69,.12);
}

.extNotice__btn--ghost:hover{
  background:#fff;
  border-color: rgba(11,42,69,.18);
}

/* Mobile: stack nicely */
@media (max-width: 720px){
  .extNotice{
    align-items:flex-start;
    flex-direction:column;
  }
  .extNotice__actions{
    width:100%;
    justify-content:flex-end;
  }
  .extNotice__btn{
    width:100%;
  }
}


.registrationPage .regHero {
   background: #fff;
  padding: 64px 0 28px;
  text-align: center;
}

.registrationPage .regHero__title {
 margin: 0;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #183c86;
  font-size: 3.2rem;
  line-height: 1.05;
}

.registrationPage .regHero__subtitle {
 margin: 14px auto 0;
  max-width: 880px;
  color: #6a7e9f;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Stepper (clean, like screenshot) ===== */
.registrationPage .regStepper{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap: 55px;                 /* spacing between steps */
  margin: 26px 0 0;
}

.registrationPage .regStepper__step{
  position: relative;
  text-align:center;
  width: 140px;               /* fixed width so lines align */
}

.registrationPage .regStepper__dot{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #eef3f7;        /* soft grey */
  margin: 0 auto 10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.registrationPage .regStepper__icon{
  width: 22px;
  height: 22px;
  color: #94a3b8;
  opacity: .95;
}

.registrationPage .regStepper__label{
  font-weight: 700;
  font-size: 13px;
  line-height: 1.15;
  color: #64748b;
}

/* active */
.registrationPage .regStepper__step.is-active .regStepper__dot{
  background: #2fb6c7;
}
.registrationPage .regStepper__step.is-active .regStepper__icon{
  color:#fff;
}
.registrationPage .regStepper__step.is-active .regStepper__label{
  color:#0f172a;
}

/* connector line (starts from circle edge, ends before next circle) */
.registrationPage .regStepper__step:not(:last-child)::after{
  content:"";
  position:absolute;

  /* vertically align with center of dot */
  top: 30px;                  /* 60px/2 */

  /* start from right edge of dot */
  left: calc(50% + 30px + 12px);  /* half dot + small gap */

  /* reach toward next dot (depends on gap) */
  width: 110px;
  height: 4px;
  border-radius: 99px;
  background: #e7eef5;
}

/* active line after active step */
.registrationPage .regStepper__step.is-active::after{
  background:#2fb6c7;
}


/* Layout */
.registrationPage .regWrap { padding: 24px 0 60px; }

.registrationPage .regPage{
  display:block;               /* keep it in layout so animation works */
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
  max-height:0;
  overflow:hidden;
  transition: opacity .25s ease, transform .25s ease, max-height .25s ease;
}

.registrationPage .regPage.is-active{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
  max-height:2000px;           /* big enough for your content */
}

/* Form grid */
.registrationPage .regGrid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.registrationPage .field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.registrationPage .field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

/* Buttons */
.registrationPage .regNav {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.registrationPage .btnNext,
.registrationPage .btnPrev,
.registrationPage .btnSubmit {
  border: 0;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  outline: none;
}

.registrationPage .btnNext:focus,
.registrationPage .btnPrev:focus,
.registrationPage .btnSubmit:focus{
  outline: none;
  box-shadow: none;
}


.registrationPage .btnNext,
.registrationPage .btnSubmit {
  background: #2fb6c7;
  color: #fff;
}

.registrationPage .btnPrev { background: #eef2f6; }

/* ----------------------------
   Events list
----------------------------- */
.registrationPage .eventCards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

/* Card */
.registrationPage .eventsCards {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e6eef5;
  cursor: pointer;
  background:#fff;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
}

.registrationPage .eventsCards:hover{
  border-color:#2fb6c7;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
  transform: translateY(-1px);
}

/* Selected = stronger */
.registrationPage .eventsCards:has(.eventsCards__check:checked){
  background:#dff7fb;
  border-color:#2fb6c7;
}

/* only the checkbox, not the hidden input */
.registrationPage .eventsCards__check {
  margin-top: 4px;
}

.registrationPage .eventsCards:has(.eventsCards__check:checked) {
  background: #dff7fb;
  border-color: #73d2df;
}

.eventsCards__badge{
  display:inline-block;
  margin-left:10px;
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  background: rgba(255, 193, 7, .15);
  color: #b7791f;
  border: 1px solid rgba(255, 193, 7, .35);
}

/* Text */
.registrationPage .eventsCards__title {
  font-weight: 800;
  margin-bottom: 4px;
}

.registrationPage .eventsCards__desc {
  opacity: .8;
  margin-bottom: 10px;
}

/* Meta pills row (FIXED: was eventCard__meta by mistake) */
.registrationPage .eventsCards__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.registrationPage .regPill {
  background: #e8f5ff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

/* ===== Pretty checkbox ===== */
.registrationPage .eventsCards{
  position: relative;
  display:flex;
  gap:14px;
  align-items:flex-start;
}

/* hide native checkbox but keep it accessible */
.registrationPage .eventsCards__check{
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
  pointer-events:none;
}

/* custom box */
.registrationPage .eventsCards__box{
  width:22px;
  height:22px;
  border-radius:6px;
  border:2px solid #d7e3ee;
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:3px;
  flex: 0 0 auto;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

/* hover lift + teal border (like your card hover idea) */
.registrationPage .eventsCards:hover .eventsCards__box{
  border-color:#73d2df;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(47,182,199,.12);
}

/* checked state */
.registrationPage .eventsCards__check:checked + .eventsCards__box{
  border-color:#2fb6c7;
  background:#2fb6c7;
}

/* check mark */
.registrationPage .eventsCards__check:checked + .eventsCards__box::after{
  content:"";
  width:10px;
  height:6px;
  border-left:2px solid #fff;
  border-bottom:2px solid #fff;
  transform: rotate(-45deg);
  margin-top:-1px;
}

/* keyboard focus (important) */
.registrationPage .eventsCards__check:focus-visible + .eventsCards__box{
  outline: 3px solid rgba(47,182,199,.25);
  outline-offset: 2px;
}


/* Review */
.registrationPage .reviewBox {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
}

.registrationPage .muted {
  opacity: .75;
  margin-top: -6px;
}

/* Responsive */
@media (max-width: 820px) {
  .registrationPage .regGrid2 { grid-template-columns: 1fr; }
}

/* Toast */
.registrationPage .regToast{
  position: sticky;
  top: 12px;
  z-index: 50;
  display:none;
  margin: 0 auto 14px;
  max-width: 860px;

  background: #fff7ed;              /* soft warning */
  border: 1px solid #fdba74;
  color: #7c2d12;
  padding: 12px 14px;
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.registrationPage .regToast.is-show{ display:block; }

.registrationPage .field.is-error input,
.registrationPage .field.is-error select,
.registrationPage .field.is-error textarea{
  border-color: #e5e7eb !important;   /* same as normal */
  box-shadow: none !important;
  outline: none !important;
}

/* 2) keep message as the validation indicator */
.registrationPage .field__hint{
  margin-top: 6px;
  font-size: 12px;
  color: #dc2626;
}

/* 3) optional: show message only when error exists */
.registrationPage .field:not(.is-error) .field__hint{
  display:none;
}

.registrationPage .field select{
  width:100%;
  padding:12px 44px 12px 14px;   /* extra right padding for arrow */
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#fff;
  font: inherit;
  line-height: 1.2;

  /* remove native arrow so we can draw our own consistently */
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  /* custom arrow */
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

/* Nice focus */
.registrationPage .field select:focus,
.registrationPage .field input:focus{
  outline:none;
  border-color:#73d2df;
  box-shadow:0 0 0 3px rgba(47,182,199,.15);
}

/* phone row layout */
.registrationPage .phoneRow{
  display:flex;
  gap:12px;
  align-items:center;
  width:100%;
}

/* country code select should NOT take full width */
.registrationPage .phoneRow__code{
  flex:0 0 180px;      /* fixed width */
  width:180px;
  max-width:180px;
}

/* phone input takes the rest */
.registrationPage .phoneRow__number{
  flex:1 1 auto;
  min-width:0;         /* important to prevent overflow weirdness */
}
