@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --ivory:#F5F3EE;
  --navy:#0A1F44;
  --navy-2:#122C5C;
  --gold:#C9A227;
  --gold-soft:#E4CE84;
  --slate:#2D2D2D;
  --slate-soft:#6B6B6B;
  --line:#DAD4C4;
}

*{box-sizing:border-box;margin:0;padding:0;}

body{
  background:var(--ivory);
  color:var(--slate);
  font-family:'Inter',sans-serif;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 16px;
}

.wrap{
  width:100%;
  max-width:600px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative;
}

.laurel{
  width:56px;
  height:auto;
  margin-bottom:18px;
}

.eyebrow{
  font-family:'Inter',sans-serif;
  font-weight:700;
  font-size:12.5px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:16px;
}

h1{
  font-family:'Cormorant Garamond',serif;
  font-weight:700;
  font-size:clamp(30px,5.4vw,48px);
  line-height:1.16;
  color:var(--navy);
  margin-bottom:8px;
}

.rule{
  width:64px;
  height:2px;
  background:var(--gold);
  margin:22px 0 26px;
}

.card{
  width:100%;
  background:#fff;
  border:1px solid var(--line);
  padding:34px 30px;
  position:relative;
  margin-bottom:26px;
}

.card::before,
.card::after{
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  width:5px;
  background:repeating-linear-gradient(
    180deg,
    var(--navy) 0px, var(--navy) 8px,
    transparent 8px, transparent 14px
  );
}

.card::before{ left:0; }
.card::after{ right:0; }

.card-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  font-style:italic;
  font-size:19px;
  color:var(--navy);
  margin-bottom:20px;
}

form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

input{
  width:100%;
  background:var(--ivory);
  border:1px solid var(--line);
  border-radius:2px;
  padding:13px 14px;
  color:var(--slate);
  font-family:'Inter',sans-serif;
  font-size:15px;
  outline:none;
  transition:border-color .15s ease;
}

input:focus{
  border-color:var(--navy);
}

button{
  margin-top:6px;
  background:var(--navy);
  color:var(--gold-soft);
  border:none;
  border-radius:2px;
  padding:14px 20px;
  font-family:'Inter',sans-serif;
  font-weight:700;
  font-size:13.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .15s ease, transform .12s ease;
}

button:hover{
  background:var(--navy-2);
  transform:translateY(-1px);
}

.disclaimer{
  font-size:12.5px;
  color:var(--slate-soft);
  max-width:440px;
}
