/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Bitter', serif;
  color: #0E305B;
  line-height: 1.5;
  background: #F2F4F7;
}

/* Layout */
.page {
  min-height: 100%;
}

.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px; /* more top/bottom breathing */
  background:#F2F4F7;
}

.container{
  width:100%;
  max-width:920px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
}

/* Header */
.hero__header{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px; /* more space between logo/title/subtitle */
}

.brand{
  width: clamp(110px, 14vw, 160px);
  height:auto;
  margin-top: 0px; /* pushes logo away from top */
}

.hero__title{
  margin:0;
  color:#0E305B;
  font-family:'Bitter', serif;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight:700;
  letter-spacing:1.6px; /* reduce spacing */
}

.hero__subtitle{
  margin:0;
  color:#0E305B;
  font-family:'Bitter', serif;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight:400;
  max-width: 60ch;
}

/* Card */
.card{
  width:100%;
  max-width:760px;
  margin:0 auto;
  padding:0;              /* card becomes an outer container */
  background:transparent; /* keep clean */
  box-shadow:none;
}

.card__inner{
  background:#ffffff;
  border-radius:16px;
  padding:32px 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  width:100%;
}

.card__title{
  margin:0;
  text-align:center;
  font-family:'Bitter', serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-style: italic;
  font-weight:700;
  color:#3E4C5C;
}

.card__lead{
  margin:10px 0 18px;
  text-align:center;
  font-family:'Bitter', serif;
  font-size: 14px;
  font-weight:400;
  color:#3E4C5C;
}

/* White box behind the blue form */
.formShell{
  background:#ffffff;
  border-radius:12px;
  padding:14px;
  width:100%;
  display:flex;
  justify-content:center;
}

/* Blue form box (your exact spec) */
.form{
  width:100%;
  max-width:560px;
  border-radius:28.458px;
  border:2.134px solid rgba(88,130,193,0.49);
  background:#5882C1;
  box-shadow:0 2.846px 17.786px rgba(0,0,0,0.25);
  padding:22px 22px 18px;
  display:grid;
  gap:14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label{
  font-family:'Bitter', serif;
  font-size:13px;
  font-weight:600;
  color:#ffffff;
}

.field__input{
  width:100%;
  height:46px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.45);
  background:#ffffff;          /* make boxes light */
  color:#0E305B;
  outline:none;
  font-size:16px;
}

.field__input::placeholder{
  color: rgba(14,48,91,0.55);
}

.field__input:focus {
  border-color: rgba(56, 189, 248, 0.6);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3E4C5C;
  font-family: 'Bitter', serif;
  font-size: 15px;
  font-weight: 500;
}

.check__box {
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

.btn {
  height: 46px;
  width: 100%;
  max-width: 300px;
  justify-self: center;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #0b1220;
  background: #38bdf8;
}

.btn:hover {
  filter: brightness(1.05);
}

.form__meta{
  margin:16px 0 0;
  text-align:center;
  font-family:'Bitter', serif;
  font-size:13px;
  color:#3E4C5C;
}

.form__status {
  margin: 2px 0 0;
  font-size: 13px;
  color: #e2e8f0;
}

/* Footer */
.footer{
  text-align:center;
  font-family:'Bitter', serif;
  color:#3E4C5C;
  opacity:0.9;
}

/* Desktop spacing */
@media (min-width: 768px) {
  .container {
    gap: 26px;
  }

  .card {
    padding: 22px;
  }
}