@charset "utf-8";
.form {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  max-width: 540px;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.21);
}
input[type="submit"] {
  appearance: none;
  width: 126px;
  background-image: url( '../images/2025/submit_btn.png' );
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  height: 0;
  border: none;
  padding: 0;
  padding-top: 122px;
}

#error .mw_wp_form {
  display: none;
}
@media screen and (max-width: 768px) {
  .form {
    padding: 0 15px;
  }
  input[type="submit"] {
    width: 110px;
    padding-top: 105px;
  }
  .entry-unit form [type="text"] {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .form {
    padding: 10px;
  }
  .form .input {
    width: calc( 100% - 66px );
  }
  .form .btn {
    width: 66px;
  }
  input[type="submit"] {
    width: 66px;
    padding-top: 61px;
  }
}