* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f3f2fb;
  color: #202124;
  font-family: Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 16px;
}

.top-area {
  height: 86px;
  background: #f0effa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #d0008b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transform: rotate(-12deg);
}

.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

.form-card {
  padding: 18px 26px 50px;
}

.form-header {
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.form-header h1 {
  font-size: 19px;
  margin: 0 0 8px;
  font-weight: 700;
}

.form-header p {
  margin: 0;
  color: #4f5b6b;
  font-size: 13px;
  line-height: 1.55;
}

.field {
  margin-bottom: 28px;
}

.field label,
.item-title {
  display: block;
  font-weight: 700;
  margin-bottom: 9px;
  font-size: 16px;
}

.field span,
.required {
  color: #e53935;
}

.help {
  margin-top: 6px;
  font-size: 11px;
  color: #7b8190;
}

input[type="date"],
select,
textarea {
  width: 100%;
  max-width: 330px;
  border: 1px solid #d6d9df;
  border-radius: 3px;
  padding: 10px 11px;
  font-size: 16px;
  background: white;
}

select {
  max-width: 360px;
}

textarea {
  max-width: 100%;
  min-height: 132px;
  resize: vertical;
  line-height: 1.5;
}

.item {
  margin-bottom: 31px;
}

.option {
  display: block;
  margin: 7px 0;
  font-size: 16px;
  line-height: 1.35;
}

.option input {
  margin-right: 6px;
  vertical-align: -2px;
}

.divider {
  border-top: 1px solid #e5e5e5;
  margin: 34px 0 28px;
}

.submit-btn {
  display: block;
  width: 150px;
  height: 52px;
  margin: 34px auto 0;
  background: #009b7a;
  color: white;
  border: none;
  border-radius: 3px;
  font-size: 17px;
  font-weight: 700;
}

#result {
  display: none;
  margin-top: 24px;
  white-space: pre-wrap;
  background: #f5f5f5;
  padding: 14px;
  border-radius: 6px;
  font-size: 12px;
}

@media (max-width: 480px) {
  .form-card {
    padding: 16px 22px 46px;
  }

  .form-header h1 {
    font-size: 16px;
  }

  .form-header p {
    font-size: 10.5px;
  }

  .item {
    margin-bottom: 30px;
  }
}