:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1d2b3b;
  background: #ffffff;
  --navy: #172b45;
  --muted: #657386;
  --line: #d5dde6;
  --orange: #c86732;
  --orange-dark: #a34d21;
  --green: #1b7452;
  --red: #b43f46;
  --shadow: 0 22px 60px rgba(23, 43, 69, .14);
}

* { box-sizing: border-box; }
html, body { min-width: 320px; min-height: 100%; }
body { margin: 0; background: #fff; }
button, input { font: inherit; }
button { cursor: pointer; }
.page { display: grid; min-height: 100vh; place-items: center; padding: 34px 18px; background: #fff; }
.registration-card { display: grid; width: min(100%, 970px); overflow: hidden; border: 1px solid #e1e6ec; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.logo-panel { display: flex; min-height: 210px; align-items: center; justify-content: center; padding: 28px 34px; background: #fff; }
.logo-panel img { display: block; width: min(100%, 820px); height: auto; max-height: 190px; object-fit: contain; }
.form-panel { width: min(100%, 650px); margin: 0 auto; padding: 46px clamp(24px, 7vw, 78px) 42px; }
.eyebrow { margin: 0 0 12px; color: var(--orange-dark); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2 { margin: 0; color: var(--navy); line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(30px, 5vw, 46px); }
h2 { font-size: 29px; }
.intro { margin: 15px 0 30px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.field { display: grid; gap: 8px; }
label { color: var(--navy); font-size: 14px; font-weight: 750; }
input[type="email"] { width: 100%; padding: 14px 15px; border: 1px solid #b9c5d1; border-radius: 10px; color: var(--navy); background: #fff; font-size: 16px; outline: none; }
input[type="email"]:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(200,103,50,.18); }
.help-text { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 22px 0 16px; color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1.5; }
.consent input { flex: 0 0 auto; width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--orange); }
.form-message { min-height: 21px; margin: 0 0 12px; color: var(--red); font-size: 14px; line-height: 1.45; }
.form-message:empty { display: none; }
.submit-button, .secondary-button { width: 100%; padding: 14px 18px; border: 0; border-radius: 10px; color: #fff; background: var(--orange); font-weight: 750; }
.submit-button:hover { background: var(--orange-dark); }
.submit-button:focus-visible, .secondary-button:focus-visible, input:focus-visible { outline: 3px solid rgba(200,103,50,.35); outline-offset: 3px; }
.success-message { padding: 26px 22px; border: 1px solid #b9dfcf; border-radius: 14px; text-align: center; background: #f2fbf6; }
.success-icon { display: grid; width: 48px; height: 48px; place-items: center; margin: 0 auto 15px; border-radius: 50%; color: #fff; background: var(--green); font-size: 27px; font-weight: 800; }
.success-message p { margin: 12px 0 22px; color: var(--muted); line-height: 1.6; }
.secondary-button { width: auto; color: var(--navy); border: 1px solid #b9c5d1; background: transparent; }
.secondary-button:hover { background: #fff; border-color: var(--navy); }
@media (min-width: 760px) {
  .registration-card { grid-template-columns: 1.08fr .92fr; }
  .logo-panel { min-height: 560px; }
  .logo-panel img { max-height: none; }
  .form-panel { display: flex; width: auto; flex-direction: column; justify-content: center; padding: 56px 48px; }
}
@media (max-width: 520px) {
  .page { padding: 0; align-items: stretch; }
  .registration-card { min-height: 100vh; border: 0; border-radius: 0; box-shadow: none; }
  .logo-panel { min-height: 145px; padding: 22px 18px; }
  .form-panel { padding: 34px 22px 30px; }
}
