body {
  background: linear-gradient(10deg, #93dafa, #cad8f4, #ffffff);
  padding-top: 0;
}

form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inquiry-container {
  margin: 0 auto;
  width: 30%;
  height: 700px;
  background: linear-gradient(150deg, #ffffff, #d4dff8);
  /* margin-top: 50px; */
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.inquiry-wrapper {
  width: 75%;
  height: 100%;
}

.inquiry-title {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  text-align: center;
}


.inquiry-form-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  margin-top: 50px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

label {
  margin-right: 20px;
  
}

.inquiry-form-item input {
  width: 97%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #686868;
  background-color: #f8f8f8;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #333;

}

textarea {
  width: 97%;
  height: 100px;
  border-radius: 5px;
  border: 1px solid #686868;
  background-color: #f8f8f8;
  margin: 0 auto;
  margin-top: 10px;
  resize: none;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  font-family: "Pretendard JP", -apple-system, BlinkMacSystemFont, "Basier Square", "Noto Sans KR", "Segoe UI", "Apple SD Gothic Neo", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.inquiry-form-btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 70px;
  background-color: #5d60f5;
  margin-top: auto;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  cursor: pointer;
}

.inquiry-form-btn {
  width: 100%;
  height: 70px;
  background-color: #5d60f5;
  color: #fff;
  border: none;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  cursor: pointer;
  font-size: 35px;
  font-weight: 600;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.personal-info-title-text {
  color: #004ddc;
  font-style: italic;
  cursor: pointer;
}

.personal-info-wrap {
  margin-top: 50px;
}

.info-check-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  gap: 10px;
}

@media (max-width: 500px) {
  .inquiry-container {
    width: 90%;
    margin-top: 0;
  }

  .inquiry-wrapper {
    width: 90%;
  }


}

@media (max-width: 360px) {
  .inquiry-container {
    width: 90%;
    margin-top: 0;
  }

  .inquiry-wrapper {
    width: 90%;
  }

  .personal-info-title {
    font-size: 14px;
  }
}
