:root{
  --aw-red:#D31533;
  --aw-blue:#ACCFED;
  --aw-dark:#705F54;
  --aw-bg:#EBE7EC;
  --aw-white:#ffffff;
  --aw-border: rgba(112,95,84,.22);
  --aw-shadow: 0 10px 30px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--aw-dark);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(172,207,237,.60), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(211,21,51,.15), transparent 55%),
    linear-gradient(180deg, var(--aw-bg), #f7f5f8);
}

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 18px 60px;
}

.header{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom: 22px;
}

.logo{
  width: 210px;
  max-width: 48vw;
  height:auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.10));
}

.title-wrap h1{
  margin:0;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: .2px;
}

.title-wrap p{
  margin: 6px 0 0;
  opacity: .9;
  line-height: 1.35;
}

.card{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--aw-border);
  border-radius: 18px;
  box-shadow: var(--aw-shadow);
  overflow:hidden;
}

.card-top{
  background: linear-gradient(90deg, rgba(211,21,51,.10), rgba(172,207,237,.25));
  padding: 18px 22px;
  border-bottom: 1px solid var(--aw-border);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(172,207,237,.35);
  border: 1px solid rgba(172,207,237,.70);
  font-weight: 650;
}

.badge-dot{
  width:10px;height:10px;border-radius:999px;background:var(--aw-red);
  box-shadow: 0 0 0 5px rgba(211,21,51,.12);
}

.card-body{padding: 20px 22px 24px;}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 720px){
  .form-grid{grid-template-columns: 1fr;}
  .header{flex-direction:column; align-items:flex-start;}
}

.field label{
  display:block;
  font-size: 14px;
  font-weight: 650;
  margin-bottom: 8px;
}

.field input{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--aw-border);
  background: var(--aw-white);
  outline: none;
  font-size: 16px;
}

.field input:focus{
  border-color: rgba(172,207,237,.95);
  box-shadow: 0 0 0 4px rgba(172,207,237,.35);
}

.hint{
  margin-top: 10px;
  font-size: 13px;
  opacity:.85;
}

.actions{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  align-items:center;
  flex-wrap:wrap;
}

button{
  appearance:none;
  border:none;
  cursor:pointer;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 750;
  font-size: 16px;
  background: var(--aw-red);
  color: white;
  box-shadow: 0 10px 22px rgba(211,21,51,.22);
}

button:hover{filter: brightness(1.03);}
button:active{transform: translateY(1px);}

.secondary{
  background: transparent;
  border: 1px solid var(--aw-border);
  color: var(--aw-dark);
  box-shadow:none;
}

.notice{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(211,21,51,.25);
  background: rgba(211,21,51,.06);
  color: var(--aw-dark);
}

.footer{
  margin-top: 18px;
  font-size: 13px;
  opacity:.8;
}
