:root{
  --bg:#f5f3ee;
  --ink:#2b2b2b;
  --muted:#4a4a4a;
  --border:#2b2b2b;
}
*{box-sizing:border-box}
body{
  margin:0; padding:0;
  background:var(--bg);
  color:var(--ink);
  font-family: Georgia, serif;
}
.container{
  max-width: 760px;
  margin: 70px auto;
  padding: 34px 22px 60px;
}
.brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  margin-bottom:48px;
}
.brand img{
  width:120px;
  height:auto;
  opacity:0.92;
}
.text{
  font-size:18px;
  line-height:1.65;
}
.text p{ margin:0 0 22px 0; }
.rule{
  margin:36px 0 30px;
  padding-top:18px;
  border-top:1px solid rgba(43,43,43,0.25);
  font-style:italic;
  color:var(--muted);
}
.button, button{
  display:inline-block;
  margin-top: 14px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  text-decoration:none;
  color: var(--ink);
  background: transparent;
  font-family: Georgia, serif;
  font-size: 16px;
  cursor: pointer;
}
.small{
  font-size:14px;
  color:var(--muted);
}
label{
  display:block;
  margin: 18px 0 8px;
}
input[type="email"], select, textarea{
  width:100%;
  padding:12px 10px;
  border:1px solid rgba(43,43,43,0.35);
  background: rgba(255,255,255,0.35);
  font-family: Georgia, serif;
  font-size:16px;
}
textarea{ min-height:120px; }
.row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin: 14px 0 6px;
}
.row input{ margin-top: 4px; }
hr{
  border:none;
  border-top:1px solid rgba(43,43,43,0.2);
  margin:30px 0;
}
