* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  height: 100vh;
}

body {
  display: flex;
  background-color: #00C5FF;
  flex-direction: column;
  row-gap: 1rem;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: auto;
  min-width: 450px;
}

.allowed-submit {
  opacity: 0.5;
  cursor: not-allowed;
}

.valid-input {
  border: 1px solid green !important;
}

.invalid-input {
  border: 1px solid red !important;
}

.invalid-msg {
  color: red;
}

.validation-form h3 {
  text-align: center;
  padding: 5px 0px;
}

.validation-form {
  border: 1px solid orange;
  width: 50%;
  background: #dad9d9;
  padding: 10px 30px;
}

.validation-form .form-group {
  margin: 15px 0px;
}

.validation-form .form-group input {
  padding: 10px;
  width: 85%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid orange;
}

.validation-form .form-group textarea {
  padding: 10px;
  width: 85%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid orange;
}

.validation-form .form-group select {
  padding: 10px;
  width: 85%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid orange;
}

.validation-form .form-group input:focus {
  outline: unset;
}

.validation-form .form-group textarea:focus {
  outline: unset;
}

.validation-form .form-group input[type=button] {
  width: 50%;
  background: orange;
  font-size: 20px;
  color: white;
}

.validation-form {
  display: block;
  position: relative;
  margin: 0;
  width: 90%;
  height: -moz-min-content;
  height: min-content;
  background-color: rgb(149, 215, 253);
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 4px;
  place-self: center;
}
.validation-form .head_pay {
  background-color: none;
}
.validation-form input {
  border-radius: 5px;
}

.validation_header {
  display: grid;
  border-bottom: solid 2px rgb(0, 183, 255);
  grid-template-columns: 1fr auto;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.validation_header h3 {
  font-weight: lighter;
}
.validation_header div {
  display: flex;
  flex-direction: column;
  place-content: center;
}

.validation_image {
  display: block;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer {
  display: flex;
  position: fixed;
  bottom: 0;
  background-color: #077da1;
  color: white;
  width: 100%;
  font-size: 0.8rem;
  place-content: center;
}

.validation_header h2 {
    padding-right:50px;
  }

@media only screen and (max-width: 700px) {
  .validation_header {
    place-items: center;
    grid-template-columns: 1fr;
  }
  .validation_header h2 {
    font-size: 3vw;
  }
  .validation_header h3 {
    font-size: 2.6vw;
  }
  footer {
    font-size: 2vw;
  }
}/*# sourceMappingURL=apa-core-sub.css.map */