/* ----------------------------------------------------------------
form
----------------------------------------------------------------- */
.form form {
  max-width: 800px;
  margin-inline: auto;
  padding: 5%;
  background-color: #fff;
  border-radius: 5px; }

.page-form form {
  background: none;
  box-shadow: none;
  padding: 0; }

.form .title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem; }

.form .title:nth-of-type(1) {
  margin-top: 0; }

.required {
  padding: 4px 10px;
  background-color: #CC4855;
  color: #fff;
  font-size: 13px;
  border-radius: 5px;
  line-height: 1;
  margin-top: 2px; }

.any {
  padding: 4px 10px;
  background-color: #666666;
  color: #fff;
  font-size: 13px;
  border-radius: 5px;
  line-height: 1;
  margin-top: 2px; }

.form input {
  width: 70%;
  height: 30px;
  border: 1px solid #DEDEDE !important;
  border-radius: 4px; }
  @media (max-width: 768px) {
    .form input {
      width: 100%; } }

.form select {
  width: 70%;
  height: 35px;
  border: 1px solid #DEDEDE !important;
  border-radius: 4px;
  background: #fff; }
  @media (max-width: 768px) {
    .form select {
      width: 100%; } }

.form textarea {
  width: 70%;
  height: 200px;
  border: 1px solid #DEDEDE !important;
  border-radius: 4px; }
  @media (max-width: 768px) {
    .form textarea {
      width: 100%; } }

.form ol {
  margin-top: 3rem; }

.form ol > li {
  list-style: none;
  font-size: 1.6rem; }

.confirmation {
  text-align: center;
  margin-top: 4rem !important; }

.confirmation input {
  background-color: #009481;
  border: 2px solid #009481 !important;
  color: #fff;
  width: 300px;
  height: 80px;
  border: none;
  text-align: center;
  font-size: 1.7rem;
  transition: 0.3s ease; }
  @media (max-width: 768px) {
    .confirmation input {
      width: 90%;
      height: 70px; } }

.confirmation input:hover {
  background-color: #fff;
  border: 2px solid #009481 !important;
  color: #009481;
  opacity: 1; }

.consent {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 200px; }

.consent input {
  width: 30px;
  height: 30px; }

.form-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 70%; }
  @media (max-width: 768px) {
    .form-flex {
      width: 100%; } }

.form-tel {
  display: flex;
  align-items: center;
  width: 50%; }
  @media (max-width: 768px) {
    .form-tel {
      width: 100%; } }

.page-form p {
  margin-top: 5px; }

.file input {
  border: none !important; }

.terms-wrap {
  width: 100%;
  height: 200px;
  overflow-y: scroll;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  font-size: 1.6rem;
  border-radius: 5px; }
