.denteventForm {
  margin: 20px 0 0 0;
  padding: 0 3%;
  display: flex;
  flex-direction: row;
  gap: 2%;
}
.input-wrap {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.input-user {
  align-items: center;
  border: 1px solid #474747;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 1.5% 0%;
  width: 100%;
  background-color: #fff;
  border-radius: 0;
  font-size: clamp(15px, 4vw, 30px);
  margin-bottom: 15px;
}
.input-user label {
  color: #222;
  font-weight: 700;
  width: 35%;
  border-right: 1px solid #7e7e7e;
  margin-right: 3%;
  text-align: center;
}
.input-user input {
  background: none;
  border: none;
  color: #7d7d7d;
  font-size: clamp(15px, 4vw, 30px);
  height: 100%;
  outline: none;
  padding: 0 2%;
  text-align: left;
  width: 100%;
}
.input-contact {
  align-items: center;
  border: 1px solid #474747;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 1.5% 0%;
  width: 100%;
  background-color: #fff;
  border-radius: 0;
  font-size: clamp(15px, 4vw, 30px);
}
.input-contact label {
  white-space: nowrap;
  color: #222;
  font-weight: 700;
  width: 35%;
  border-right: 1px solid #7e7e7e;
  margin-right: 3%;
  text-align: center;
}
.phone-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.phone-wrap input {
  text-align: center;
  background: none;
  font-size: clamp(15px, 4vw, 30px);
  height: 100%;
  width: 28%;
  border: none;
  outline: none;
}
.phone-wrap .hyphen {
  margin: -7px 0 0px 0px;
}
.btn-apply {
  width: 40%;
  background-color: white;
  border: none;
  padding: 0;
  cursor: pointer;
}
.btn-apply img {
  width: 100%;
  object-fit: contain;
}
.consent-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 0.5rem;
}
.consent-area label {
  cursor: pointer;
  font-size: clamp(11px, 1.5vw, 16px);
  font-weight: 700;
  text-align: center;
}
#toggle-detail {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  padding: 0;
}
#detail-area {
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: clamp(10px, 1.3vw, 13px);
  line-height: 1.4;
  margin-bottom: 1rem;
  padding: 0 1rem;
}
#detail-area.open {
  display: block;
  max-height: 400px;
  padding: 1rem;
} 