/* Sign Up Form */

.signup_container {
  max-width: 430px;
  margin: 0px auto;
}

.signup_section {
  float: left;
  width: 100%;
  padding: 0px 10px;
  position: absolute;
  margin: 0;
  top: 80px;
}
.signup_section .signup_container > a {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
  font-size: 24px;
  padding: 0px 10px;
}
.signup_section .signup_container > a img {
  width: 228px;
  height: 74px;
}

.signup_section .signup_form {
  float: left;
  width: 100%;
  padding: 0px 30px;
  margin-bottom: 10px;
}
.signup_section .signup_form h3 {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
  font-size: 36px;
  font-style: normal;
  color: #fff;
  font-weight: 600;
  line-height: 43.74px;
}
.signup_section .signup_form form .signup_fields {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.signup_section .signup_form form .signup_fields .input_field {
  width: 100%;
}
.signup_section .signup_form form .signup_fields .name_field {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0px 15px;
}

.signup_section .signup_form form .signup_fields .name_field input {
  padding: 14px;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-bottom: 20px;
  outline: none;
  width: 100%;
  height: 52px;
  background: #ffffff;
}
.signup_section .signup_form form .signup_fields .name_field input:focus {
  box-shadow: 0 0 0 0.2rem #152238;
  outline: 1px solid #152238;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.signup_section .signup_form form .signup_fields .input_field input {
  padding: 14px;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  border: 1px solid #152238;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-bottom: 20px;
  outline: none;
  width: 100%;
  height: 52px;
  background: #ffffff;
}
.signup_section .signup_form form .signup_fields .input_field input:focus {
  box-shadow: 0 0 0 0.2rem #152238;
  outline: 1px solid #152238;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.signup_section .signup_form form .signup_fields .submit_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}
.signup_section .signup_form form .signup_fields .submit_btn button {
  color: #ffffff;
  background-color: #e89c31;
  text-transform: uppercase;
  border-color: rgba(0, 0, 0, 0.5);
  border: 1px solid transparent;
  padding: 6px 0px;
  cursor: pointer;
  user-select: none;
  width: 100%;
  text-align: center;
  height: 52px;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.15em;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 7px;
}

.form-bottom a {
  text-decoration: none;
  color: #fff;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
}
.form-bottom {
  display: flex;
  justify-content: center;
  color: #fff;
}
.form-bottom span {
  color: #e89c31;
}

/*RESPONSIVE*/

/*Tablet*/
@media (min-width: 768px) and (max-width: 1024px) {
}

/*mobile rotation*/
@media (max-width: 767px) {
}

/*mobile*/
@media (max-width: 540px) {
  .signup_section .signup_form form .signup_fields .name_field {
    grid-template-columns: auto;
  }
}

@media (max-width: 325px) {
}
