@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
body {
  font-family: "Open Sans", sans-serif;
}

.margin-box {
  margin: 20px 0px;
}

.header-form {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-form > h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 300;
}

.header-form > h3 b {
  font-weight: 700;
}

.form-box {
  display: flex;
  flex-direction: column;
  padding: 20px 40px 30px 40px;
  background: #1E91D0;
  box-shadow: 0px 15px 17px #64646426;
  border-radius: 3px;
  opacity: 1;
}

.block-input {
  display: grid;
  grid-template-columns: 50% 50%;
}

.block-input > .input-form-left {
  margin-right: 5px;
}

.block-input > .input-form-right {
  margin-left: 5px;
}

.input-form {
  display: flex;
  flex-direction: column;
}

.input-form > label {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}

.input-form-wp {
  height: 50px;
  max-width: 100%;
  padding-left: 15px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #a8c4e5;
  opacity: 1;
  transition: 0.5s;
  font-size: 18px;
}

::placeholder {
  color: #ABABAB;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #ABABAB;
}

input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #a8c4e5;
}

.btn-sbm {
  display: flex;
  align-items: center;
  justify-content: center;
}

#wp-submit-formnew {
  margin-top: 30px;
  padding: 15px 80px;
  text-align: center;
  background: #ff9900 0% 0% no-repeat padding-box;
  border: 1px solid #ff9900;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  opacity: 1;
  transition: 0.5s;
  font-size: 18px;
}

#wp-submit-formnew:hover {
  background: #fdb13f 0% 0% no-repeat padding-box;
}

#submitIframeWpFormNew {
  position: absolute;
  z-index: -1;
}

.disabled-btn {
  cursor: not-allowed !important;
  background-color: rgb(229, 229, 229) !important;
  border: 2px solid rgb(0, 0, 0, 0) !important;
  color: #999999 !important;
}

@media screen and (max-width: 460px) {
  .form-box {
    padding: 10px 10px 30px 10px;
  }

  .block-input {
    display: flex;
    flex-direction: column;
  }

  .block-input > .input-form-left {
    margin-right: 0px;
  }

  .block-input > .input-form-right {
    margin-left: 0px;
  }

  #wp-submit-formnew {
    padding: 15px 45px;
  }
}

