.login-open-beta-banner {
  margin: 10px auto 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 144, 53, 0.35);
  background: linear-gradient(135deg, rgba(212, 144, 53, 0.2), rgba(155, 61, 24, 0.18));
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-mode-tabs-triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-shell="guest"] .app-main:has(.volunteer-register-shell) {
  display: flex;
  min-height: 100vh;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 0 48px;
}

body[data-shell="guest"] .app-page:has(.volunteer-register-shell) {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.volunteer-register-shell {
  width: 100%;
  display: flex;
  justify-content: center;
}

.volunteer-registration-page {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 28px 30px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(251, 146, 60, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(10, 18, 27, 0.96), rgba(6, 12, 20, 0.97));
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.42);
  color: #f3e6d4;
}

.volunteer-registration-page .muted {
  color: #9b8e7e;
}

.volunteer-registration-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.volunteer-registration-intro {
  margin-bottom: 26px;
  text-align: left;
}

.volunteer-registration-intro h1 {
  margin: 4px 0 12px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: #fef3c7;
}

.volunteer-registration-intro p {
  margin: 0 0 10px;
  color: #d6c4aa;
}

.volunteer-registration-form {
  display: grid;
  gap: 20px;
}

.vr-section {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.vr-section h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  color: #fef3c7;
}

.vr-section-note {
  margin: -4px 0 16px;
  color: #9b8e7e;
  font-size: 0.93rem;
}

.vr-fields {
  display: grid;
  gap: 16px;
}

.vr-fields-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vr-field-span-2 {
  grid-column: 1 / -1;
}

.vr-field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.vr-field > span:first-child,
.vr-fieldset legend {
  color: #f3e6d4;
  font-size: 0.96rem;
  font-weight: 700;
}

.vr-required {
  color: #dc2626;
  margin-left: 2px;
}

.vr-subfields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.volunteer-registration-page input:not([type="checkbox"]):not([type="radio"]),
.volunteer-registration-page select,
.volunteer-registration-page textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #f4f8fb;
  font-size: 1rem;
  box-shadow: none;
}

.volunteer-registration-page input::placeholder,
.volunteer-registration-page textarea::placeholder {
  color: #7f92a3;
}

.volunteer-registration-page input:not([type="checkbox"]):not([type="radio"]):focus,
.volunteer-registration-page select:focus,
.volunteer-registration-page textarea:focus {
  border-color: rgba(108, 215, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(108, 215, 255, 0.16);
}

.volunteer-registration-page textarea {
  min-height: 120px;
  resize: vertical;
}

.vr-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}

.vr-fieldset legend {
  margin-bottom: 2px;
}

.vr-choice-grid {
  display: grid;
  gap: 8px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vr-inline-choice-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.vr-radioline,
.vr-checkline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e7ddcf;
  font-size: 0.96rem;
  font-weight: 500;
}

.vr-radioline input,
.vr-checkline input {
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: #6cd7ff;
}

.vr-conditional-field[hidden] {
  display: none !important;
}

.volunteer-registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.vr-ticket-note {
  margin: 10px 0 0;
  color: #b9ab96;
  font-size: 0.94rem;
}

.volunteer-registration-success {
  display: grid;
  gap: 16px;
  text-align: center;
  padding: 26px 12px 8px;
}

.volunteer-registration-success h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fef3c7;
}

@media (max-width: 720px) {
  .vr-fields-two,
  .vr-subfields,
  .vr-choice-grid,
  .login-mode-tabs-triple,
  .volunteer-registration-topbar {
    grid-template-columns: 1fr;
  }

  .volunteer-registration-page {
    padding: 22px 18px 24px;
  }

  .volunteer-registration-topbar {
    display: grid;
  }

  .vr-inline-choice-group {
    gap: 14px;
  }
}