:root{
  --green:#2f8f43;
  --green-dark:#247438;
  --green-soft:#edf7e8;
  --line:#dfe9dc;
  --text:#202420;
  --muted:#657065;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Pretendard,"Noto Sans KR",Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#dcefcf 0%,#edf7e7 65%,#ffffff 100%);
  line-height:1.6;
}
.wrap{
  max-width:820px;
  margin:0 auto;
  padding:64px 24px 80px;
}
.head{
  text-align:center;
  margin-bottom:34px;
}
.badge{
  display:inline-block;
  padding:7px 14px;
  border-radius:999px;
  background:var(--green-soft);
  color:var(--green-dark);
  font-weight:800;
  font-size:14px;
}
h1{
  margin:16px 0 10px;
  font-size:42px;
  line-height:1.2;
  letter-spacing:-.04em;
}
.head p{
  margin:0;
  color:var(--muted);
  font-size:16px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:34px;
  box-shadow:0 16px 44px rgba(38,77,42,.10);
}
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.field.full{grid-column:1/-1}
label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:800;
}
.req{color:var(--green)}
input,textarea,select{
  width:100%;
  border:1px solid #d8e2d5;
  border-radius:12px;
  padding:14px 15px;
  font:inherit;
  font-size:15px;
  color:var(--text);
  background:#fff;
  outline:none;
  transition:.18s ease;
}
input:focus,textarea:focus,select:focus{
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(47,143,67,.10);
}
textarea{
  min-height:170px;
  resize:vertical;
}
.notice{
  margin:24px 0 18px;
  padding:15px 17px;
  border-radius:12px;
  background:#f6faf4;
  color:#566156;
  font-size:14px;
}
.agree{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:22px;
  font-size:14px;
  color:#4f594f;
}
.agree input{
  width:18px;
  height:18px;
  margin-top:3px;
  accent-color:var(--green);
}
button{
  width:100%;
  border:0;
  border-radius:13px;
  padding:16px 20px;
  background:linear-gradient(90deg,var(--green-dark),var(--green));
  color:#fff;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(47,143,67,.22);
}
button:hover{filter:brightness(.97)}
.contact{
  text-align:center;
  margin-top:26px;
  color:var(--muted);
  font-size:14px;
}
.contact a{
  color:var(--green-dark);
  font-weight:900;
  text-decoration:none;
}
@media(max-width:650px){
  .wrap{padding:42px 16px 60px}
  h1{font-size:32px}
  .card{padding:24px 18px}
  .grid{grid-template-columns:1fr}
  .field.full{grid-column:auto}
}
