body {
  margin: 0;
  font-family: Arial, "Noto Sans KR", sans-serif;
}

.customer-page {
  padding: 90px 0 70px;
}

.customer-form {
  width: 1080px;
  margin: 0 auto;
  color: #222;
}

.customer-form h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 58px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 190px;
  margin-bottom: 55px;
}

.form-row.single {
  display: block;
  width: 420px;
}

.form-row.single:has(textarea) {
  width: 100%;
}

label {
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
}

label span,
.required span {
  color: #e9341f;
}

input,
textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #999;
  padding: 0 0 10px;
  color: #ccc;
  font-size: 15px;
  font-weight: 800;
  outline: none;
}

textarea {
  height: 95px;
  border: 1px solid #999;
  border-radius: 4px;
  padding: 14px;
  resize: none;
}

.required {
  margin: 15px 0 38px;
  color: #777;
  font-size: 16px;
  font-weight: 900;
}

.agree {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: #222;
  font-size: 17px;
  margin-bottom: 28px;
}

.agree input {
  width: 16px;
  height: 16px;
  accent-color: #fff;
}

.agree b {
  color: #e9341f;
  text-decoration: underline;
}

.submit-btn {
  display: block;
  width: 170px;
  height: 54px;
  margin: 0 auto;
  border: 0;
  border-radius: 28px;
  background: #e9341f;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}


