/* ADFC Fahrradklima-Test – Registrierung */

:root {
  --primary-blue: #004e8c;
  --deep-blue: #00447c;
  --turquoise: #00b4c8;
  --pink: #f3c4d6;
  --white: #ffffff;
  --surface: #eef2f7;
  --text: #102640;
  --muted: #5d7090;
  --border: #c8d4e3;
  --shadow: 0 16px 44px rgba(0, 45, 91, 0.18);
  --radius-card: 22px;
  --radius-control: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
}

body {
  background:
    linear-gradient(135deg, #004E8C 0%, #004E8C 50%, #006A99 70%, #0099B0 86%, #F3C4D6 100%);

}

.page-shell {
  min-height: 100vh;
  padding: 6vw 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-card {
  width: min(1048px, 100%);
  min-height: 756px;
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.brand-panel {
  width: 43%;
  padding: 74px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d9e2ec;
}

.claim-logo {
  width: min(100%, 400px);
  height: auto;
  object-fit: contain;
  margin-bottom: 60px;
}

.form-panel {
  width: 57%;
  padding: 54px 56px 32px;
}

.mobile-brand {
  display: none;
}

.form-header h1 {
  margin: 0 0 14px;
  color: var(--primary-blue);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.form-header p {
  margin: 0 0 38px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span {
  color: var(--primary-blue);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.field input {
  width: 100%;
  height: 54px;
  padding: 0 17px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  outline: none;
  box-shadow: 0 1px 3px rgba(17, 51, 82, 0.03);
}

.field input::placeholder {
  color: #6b7e9a;
  opacity: 1;
}

.field input:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(0, 180, 200, 0.14);
}

.field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  margin-top: 4px;
}

.field-checkbox input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary-blue);
}

.field-checkbox span {
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.required-note {
  margin: -6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.submit-button {
  height: 58px;
  margin-top: 12px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #0067b9 0%, #004b8b 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(0, 78, 140, 0.16);
  text-decoration: none;
}

.submit-button:hover {
  filter: brightness(1.04);
}

.arrow {
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.privacy-note {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #283e58;
  text-align: center;
}

.lock {
  width: 18px;
  height: 18px;
  stroke: #6b7e9a;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Status pages: Danke, Bereits angemeldet, Abgelaufen */

.status-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.status-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.status-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary-blue);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-panel h1 {
  margin: 0;
  color: var(--primary-blue);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.status-panel p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

/* Mobile version */
@media (max-width: 760px) {
  .page-shell {
    padding: 24px 16px;
    align-items: flex-start;
  }

  .registration-card {
    width: min(390px, 100%);
    min-height: auto;
    display: block;
    border-radius: 20px;
  }

  .brand-panel {
    display: none;
  }

  .form-panel {
    width: 100%;
    padding: 21px 29px 27px;
  }

  .mobile-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin-bottom: 26px;
  }

  .mobile-claim-logo {
    width: 250px;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
  }

  .form-header h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .form-header p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.35;
  }

  .desktop-break {
    display: none;
  }

  .registration-form {
    gap: 18px;
  }

  .field {
    gap: 7px;
  }

  .field span {
    font-size: 14px;
  }

  .field input {
    height: 46px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 8px;
  }

  .submit-button {
    height: 55px;
    margin-top: 5px;
    font-size: 16px;
  }

   .privacy-note {
    max-width: 270px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    line-height: 1.3;
  }

  .privacy-note .lock {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .field-checkbox span {
    font-size: 12px;
  }

  .status-panel h1 {
    font-size: 24px;
  }

  .status-panel p {
    font-size: 15px;
  }

  .status-icon {
    width: 46px;
    height: 46px;
  }

  .status-icon svg {
    width: 22px;
    height: 22px;
  }
}
