
/* Buttons and Input */

.button, .menu .button, input, select, textarea {
  border: 2px solid white;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: bold;
  background: transparent;
  outline: none;
  font-family: 'Nunito', sans-serif;
  color: hsla(0, 0%, 90%, 1);
  transition: 0.2s background, 0.2s color, 0.2s transform;
}

.button {
  background: hsla(0, 0%, 100%, 1) !important;
  color: hsl(218, 48%, 28%) !important;
  cursor: pointer;
}

textarea {
  border-radius: 10px;
  min-height: 150px;
  max-width: 100%;
  min-width: 100%;
}

input, select, textarea {
  margin-bottom: 10px;
  width: 100%;
  box-sizing:border-box;
}

select option {
  background: black;
}

.button:hover, .menu .button:hover, input[type='submit']:hover {
  background: hsla(0, 0%, 100%, 1);
  color: hsl(218, 48%, 28%);
  cursor: pointer;
}

.button:hover, .menu .button:hover {
  background: hsl(0deg 0% 100% / 17%) !important;
  color: hsl(0deg 0% 100%) !important;
  cursor: pointer;
  transform: translateX(1px) translateY(2px) !important;
}

.select_birth {
  width: 32%;
}

input[type='file'] {
  padding-top: 7px;
  padding-bottom: 7px;
}

input[type='checkbox'] {
  width: 5%;
  height: 15px;
  float: left;
  margin-top: 3px;
}

.final_submit {
  background: hsla(0, 0%, 100%, 0.12);
}

/* Recaptache */

.recaptcha_wrapper {
  text-align: center;
}

.recaptcha_wrapper div {
  display: inline-block;
}

/* Other */

.submission_buttons .button {
  display: inline-block;
  width: 70%;
  margin-bottom: 60px;
  margin-right: 10px;
}

.submission_buttons h4 {
  text-align: left;
  padding-left: 12%;
}

@media only screen and (max-width: 1200px) {
  .submission_buttons .button {
    width: 80%;
  }
  .submission_buttons h4 {
    padding-left: 0%;
  }
}

.input_info {
  width: 99%;
  margin-left: 1%;
  line-height: 19px;
  color: hsl(220, 40%, 70%);
  margin-bottom: 50px;
}

.input_info .important, .important {
  letter-spacing: 1px;
  color: #ef3a3a;
}

.forgot_password {
  text-align: right;
  font-size: 13px;
  padding-right: 10px;
  color: hsl(220, 40%, 70%);
}


/* Messages */

.success_msg {
  color: hsla(120, 100%, 30%, 1);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  background: hsla(120, 100%, 50%, 0.1);
  border-left: 3px solid green;
}

.fail_msg {
  color: hsla(0, 100%, 45%, 1);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  background: hsla(0, 100%, 50%, 0.1);
  border-left: 3px solid red;
}

.fail_msg span {
  color: hsla(0, 100%, 30%, 1);
  font-size: 16px;
}


/* Addr */

#address_preview {
  background: #00000087;
  width: 530px;
  padding: 10px;
  margin: 10px;
  line-height: 19px;
  font-size: 16px;
}


