html .signUpForm, body .signUpForm{
  display: flex;
  justify-content: center;
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  overflow-x: hidden;
  overflow-y: hidden;
}
.nnl-sign-up-form {
  max-width: 727px;
  margin-top: 100px;
  background-color: #f1f1f1;
  border-radius: 20px;
  box-sizing: content-box;
  box-shadow: cadetblue;
}
#signUpForm input[type=text], #signUpForm input[type=password] {
  width: 100%;
  padding: 16px 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
#signUpForm select {
  width: 100%;
  padding: 16px 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
#signUpForm .icon {
  display: flex;
  justify-content: center;
  height:96px;
}
#signUpForm button {
  background-color: #AF272F;
  color: white;
  padding: 14px 0;
  margin: 10px 0;
  border: none;
  cursor: pointer;
  width: 85%;
  border-radius: 11px;
}
#signUpForm label {
  margin-top: .5rem;
  margin-bottom: 0;
}
#signUpForm h1 {
  text-align:center;
}
#signUpForm button:disabled {
  opacity: .5;
  cursor: not-allowed;
}
#signUpForm .formcontainer {
  text-align: center;
  margin: 24px 0 12px;
}
#signUpForm span.psw {
  float: right;
  padding-top: 0;
  padding-right: 15px;
}
#signUpForm a {
  text-decoration: underline;
}
/* Change styles for span on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
}
#captcha,
#captcha iframe {
  width: 304px;
  margin: 0 auto;
}

.toast-message {
  position: absolute;
  text-align: center;
  top: 70%;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  margin: auto;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 400;
  display: none;
  z-index: 2020;
  font-size: 18px;
}