@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
:root {
  --brand-red: #c81d18;
  --brand-cream: #F6F5F3;
  --text-dark: #222;
  --muted-light:#F6F5F3;
  --muted-strong:#F6F5F3;
  --focus-ring: rgba(229, 9, 20, 0.2);
  --panel-shadow: rgba(0, 0, 0, 0.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Exclusive Editorial', 'Seagull', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: #C81D18;
  color: #F6F5F3;
}
.RegisterWrapper { display: flex; min-height: 100vh; }
.rw-title { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 2.7rem; }
.rw-tagline { font-size: clamp(1.2rem, 3vw, 2rem); margin-bottom: 1.2rem; color: #C81D18; font-weight: 600; text-align: center; }
.rw-slogan { font-size: clamp(0.9rem, 2vw, 1.1rem); font-weight: 700; color: var(--brand-red); letter-spacing: 1px; position: absolute; left: 2.5vw; bottom: 6vw; }
.rw-left { flex: 1 1 43%; min-height: 100vh; background: #F6F5F3; color: var(--text-dark); display: flex; flex-direction: column; justify-content: flex-start; align-items: center; padding: clamp(3rem, 15vh, 13rem) 2vw 2vw; border-radius: 0 0 600px / 0 0 60%; position: relative; font-weight: 700; text-align: center; box-shadow: 0 0 0 0 var(--panel-shadow); }
.rw-logo { width: min(390px, 85%); margin-bottom: 20px; }
.rw-right { flex: 1 1 57%; display: flex; justify-content: center; align-items: center; background: var(--brand-red); padding: 2vw; }
.rw-form-inner { width: 100%; max-width: 420px; background: none; padding: 0; }
.rw-heading { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; margin: 0 0 0.5rem; color: var(--brand-cream); letter-spacing: 1px; }
.rw-subheading { color: var(--muted-light); margin: 0 0 1.5rem; font-size: clamp(0.8rem, 2vw, 1rem); }
.rw-label { font-weight: 600; color: var(--brand-cream); margin-bottom: 0.3rem; display: flex; align-items: center; gap: 4px; font-size: 0.8rem; }
.rw-input { width: 100%; padding: 0.7em 0.9em; background: #F6F5F3 !important; border: 1px solid transparent; color: var(--text-dark); border-radius: 6px; margin-bottom: 0.2em; font-size: clamp(0.8rem, 1.5vw, 1rem); font-weight: 500; }
.rw-input:focus { outline: none; background: #F6F5F3 !important; color: var(--text-dark); box-shadow: 0 0 0 2px var(--focus-ring); }
.rw-error { color: var(--brand-cream); font-size: 0.8rem; margin-top: 0.35rem; margin-bottom: 0.2rem; display: block; font-weight: 600; }
.rw-error.captcha-error { min-height: 0; margin-top: 0.5rem; }
.rw-pw-wrap { position: relative; display: flex; align-items: center; }
.rw-pw-toggle { background: none; border: none; color: var(--brand-red); position: absolute; right: 10px; top: 50%; transform: translateY(-50%); cursor: pointer; padding: 0; font-size: 1.2rem; display: inline-flex; align-items: center; justify-content: center; }
.rw-next-btn { width: 100%; background: var(--brand-cream); color: var(--brand-red); border: 1px solid transparent; border-radius: 6px; padding: 0.7em 0; font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s, border-color 0.2s; letter-spacing: 1px; }
.rw-next-btn:hover { background: var(--brand-cream); color: var(--text-dark); border-color: var(--brand-red); }
.rw-form-inner .small { font-size: 0.95rem; }
.rw-form-inner .form-check-input { margin-right: 0.3rem; }
.rw-form-inner .form-check-label { color: var(--brand-cream); }
.rw-server-error { background: #F6F5F3; color: var(--text-dark); border: 1px solid #fff; font-size: 0.8rem; padding: 0.75rem 1rem; margin-bottom: 1rem; font-weight: 700; border-radius: 8px; box-shadow: 0 2px 8px rgba(200,29,24,0.08); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
@media (max-width: 991.98px) { .RegisterWrapper { flex-direction: column; } .rw-left, .rw-right { width: 100%; min-width: 0; } .rw-left { min-height: auto; border-radius: 0 0 48px 48px; padding: 4vw 2vw 7vw; } .rw-slogan { left: 2vw; bottom: 4vw; } .rw-right { min-height: auto; padding: 6vw 2vw 7vw; } }
@media (max-width: 575.98px) { .rw-title { font-size: 2rem; } .rw-tagline { font-size: 1.2rem; } }
