:root{
  --bg:#e9f2ff;
  --card:#ffffff;
  --navy:#0B1828;
  --blue:#3b82f6;
  --gold:#C5A059;
  --border:#cfddee;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,Arial,sans-serif;
  background:var(--bg);
  color:var(--navy);
  line-height:1.6;
}

.wrap{max-width:1100px;margin:50px auto;padding:0 20px;}

.top{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 20px;
  border:1px solid var(--border);
  border-radius:16px;
  background:var(--card);
  margin-bottom:26px;
}

.brand{display:flex;align-items:center;gap:12px;}
.crest{
  width:40px;height:40px;border-radius:10px;
  background:linear-gradient(135deg,#f3e6c5,#ffffff);
  border:1px solid var(--gold);
}
.brand b{font-weight:900}
.brand span{color:#475569;font-size:.9rem}

.hero{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  margin-bottom:20px;
}
.kicker{color:var(--blue);font-weight:900;text-transform:uppercase;font-size:.8rem}
h1{margin:8px 0;font-size:2rem}
.sub{color:#334155}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
}

.info p{margin:8px 0;color:#334155}
.info a{color:var(--blue);font-weight:700;text-decoration:none}

form{margin:0}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
label{font-size:.9rem;font-weight:700}
input,select,textarea{
  padding:14px;
  border-radius:12px;
  border:1px solid var(--border);
  font-size:1rem;
  background:#ffffff;
}
textarea{min-height:140px}
input:focus,select:focus,textarea:focus{
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(59,130,246,.15);
}

.btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:14px;
  background:linear-gradient(180deg,#3b82f6,#2563eb);
  color:white;
  font-weight:900;
  font-size:1rem;
  cursor:pointer;
}
.btn:hover{filter:brightness(1.05)}

.fine{
  margin-top:10px;
  color:#475569;
  font-size:.85rem;
  text-align:center;
}

.footer{
  margin-top:30px;
  color:#475569;
  font-size:.85rem;
  text-align:center;
}

@media(max-width:900px){
  .grid{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  h1{font-size:1.6rem}
}
html, body, #container
{
   width: 100%;
   height: 100%;
}
body
{
   background-color: #FFFFFF;
   color: #400000;
   font-family: Garamond;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
a
{
   color: #400000;
   text-decoration: underline;
}
a:hover
{
   color: #400000;
   text-decoration: underline;
}
