/* ----------------------------------------------------------------------------
CSS for the create account page

NOTE: This page also uses the login.css for the logos and general page layout
------------------------------------------------------------------------------*/
.createAccountTitle {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}

input[type=password] {
  width: 100%;
  height: 35px;
  margin-bottom: 5px;
  margin-top: 5px;
  box-sizing: border-box;
}

input.error {
  background-color: #bb0738;
}

.middleSection {
  margin-left: 5%;
  margin-right: 5%;
}

.signUpButton {
  margin-top: 10px;
  margin-bottom: 10px;
}

.signUpButtonDiv {
  display: flex;
  justify-content: center;
  margin-left: 5%;
  margin-right: 5%;
}

.info {
  float: none;
}

.smallText {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#errorMessage {
  text-align: center;
  color: #bb0738;
}

#googleRecapthaError {
  color: #bb0738;
  text-align: center;
}

.recaptchaContainer {
  width: 302px;
}

.recaptchaFlexParent {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-top: 10px;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}

/*For google recaptcha red border*/
.warningBorder {
  border: solid 2px #bb0738;
}

/*Desktop view*/
@media screen and (min-width: 768px) {
  .inputFieldsDiv, .instructionDiv {
    max-width: 302px;
    min-width: 280px;
    padding: 0px;
  }

  .inputFieldsDiv {
    margin-right: 10px;
  }

  .instructionDiv {
    margin-left: 10px;
    padding-top: 10px;
  }

  .middleSection {
    flex-direction: row-reverse;
  }

  /*.recaptchaContainer {
      margin-right: 320px;
  }*/
}
/*If the height gets too low, make it scrollable*/
@media screen and (max-width: 659px) and (max-height: 700px) {
  .loginPageContainer {
    display: block;
  }
}
@media screen and (max-width: 660px) {
  .btnMobileLeft {
    position: fixed !important;
    width: 50vw !important;
    max-width: 50vw !important;
    min-width: 50px;
    margin-top: 50px;
    margin-bottom: 0px !important;
    top: auto !important;
    bottom: 0px !important;
    left: 0px !important;
    height: 64px !important;
    z-index: 998;
  }

  .btnMobileRight {
    position: fixed !important;
    width: 50vw !important;
    max-width: 50vw !important;
    min-width: 50px !important;
    margin-left: -50px;
    margin-top: 50px;
    margin-bottom: 0px !important;
    top: auto !important;
    bottom: 0px !important;
    right: 0% !important;
    height: 64px !important;
    z-index: 998;
  }

  .signUpButtonDiv {
    padding-bottom: 90px;
  }
}

/*# sourceMappingURL=createaccount.css.map */
