input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

input[type="date"]:in-range::-webkit-datetime-edit-year-field,
input[type="date"]:in-range::-webkit-datetime-edit-month-field,
input[type="date"]:in-range::-webkit-datetime-edit-day-field,
input[type="date"]:in-range::-webkit-datetime-edit-text {
  color: transparent;
}

.section-5-form-wrapper {
  /* layout */
  display: flex;
  padding: 60px 70px;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 1320px;
  box-sizing: border-box;
  margin-top: 60px;
  margin-bottom: 120px;

  /* style */
  border-radius: 40px;
  background: #fff;
  box-shadow: 0px 12px 40px 0px #d7e9fa;

  /* responsive */
  @media screen and (max-width: 860px) {
    border-radius: 20px;
    padding: 20px 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

.hidden-date-input::placeholder {
  opacity: 0;
}

.section-5-wrapper {
  /* layout */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;

  /* style */
  background-color: #f2fcff;

  /* typography */
  text-align: center;
}

.section-5-content-wrapper {
  /* layout */
  display: flex;
  flex-direction: column;
  margin-top: 120px;
  width: 100%;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section-5-title {
  /* typography */
  color: #0bade4;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-size: 20px;
    line-height: 28px;
  }
}

.section-5-subtitle {
  /* layout */
  margin-top: 12px;

  /* typography */
  color: #6e6e6e;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 8px;

    font-size: 14px;
    line-height: 22px;
  }
}

.section-5-content {
  /* layout */
  padding-top: 30px;
  padding-bottom: 40px;
  max-width: 1240px;
  width: 100%;

  /* responsive */
  @media screen and (max-width: 860px) {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.section-5-form {
  /* layout */
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.input-group {
  /* layout */
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  align-items: start;
  width: 100%;
}

.input-group-phone {
  /* layout */
  display: flex;
  flex-direction: row;
  row-gap: 8px;
  align-items: start;
  width: 100%;
}

.input-group-cert {
  /* layout */
  display: none;
  flex-direction: column;
  row-gap: 8px;
  align-items: start;
  width: 100%;
}

.phone-validation-btn {
  /* layout */
  display: flex;
  width: 220px;
  height: 46px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  white-space: nowrap;

  /* style */
  border-radius: 12px;
  background: #11baf3;
  border: none;
  cursor: pointer;

  /* typography */
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    width: 100%;
    max-width: 100px;
    height: 46px;

    font-size: 14px;
    line-height: 18px;
  }
}

.input-subgroup {
  /* layout */
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-self: stretch;
}

.input-label {
  /* typography */
  color: var(--gray-70, #6e6e6e);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-weight: 400;
  }
}

.input-calendar-icon {
  /* layout */
  position: absolute;
  right: 16px;
  top: 12px;

  /* style */
  cursor: pointer;
  pointer-events: none;

  /* responsive */
  @media screen and (max-width: 860px) {
    top: 10px;
  }
}

.search-address-btn {
  /* layout */
  display: flex;
  height: 48px;
  padding: 11px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  margin-left: 16px;

  /* style */
  border-radius: 12px;
  border: 1px solid var(--primary, #11baf3);
  background: var(--white, #fff);
  cursor: pointer;

  /* typography */
  color: var(--primary, #11baf3);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;

  /* responsive */
  @media screen and (max-width: 860px) {
    padding: 12px 12px;
    height: 42px;
  }
}

.agreement-wrapper {
  /* layout */
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  align-items: start;
  margin-top: 14px;
  margin-bottom: 14px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: auto;
  }
}

.agreement-item {
  /* layout */
  display: flex;
  flex-direction: row;
  column-gap: 12px;
  justify-content: center;
}

.agreement-text {
  /* typography */
  color: var(--gray-70, #6e6e6e);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.2px;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-size: 12px;
    line-height: 18px;
  }
}

.agreement-text-bold {
  /* typography */
  font-weight: 600;
}

.section-5-submit-btn {
  /* layout */
  display: flex;
  height: 52px;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: none;

  /* style */
  border-radius: 16px;
  background: var(--primary, #11baf3);
  cursor: pointer;

  /* typography */
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.section-5-submit-btn:disabled {
  /* layout */
  display: flex;
  height: 52px;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: none;

  /* style */
  border-radius: 16px;
  background: var(--primary, #e1e1e1);
  cursor: pointer;

  /* typography */
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.agreement-checkbox {
  /* layout */
  width: 22px;
  height: 22px;

  /* style */
  cursor: pointer;
}

.input-flex-box {
  /* layout */
  display: flex;
  flex-direction: row;
  width: 100%;
  column-gap: 16px;

  /* responsive */
  @media screen and (max-width: 860px) {
    flex-direction: column;
    row-gap: 8px;
  }
}

#memo-input {
  /* layout */
  height: 80px;
  line-height: 1.5; /* Adjust line-height to align text */
  text-align: start; /* Optional, aligns the text at the start (left) */
  vertical-align: top; /* Ensures the content aligns to the top */
}
