* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Questrial", sans-serif;
  font-weight: lighter;
  background-color: #081023;
  margin-top: 100px;
}
.main {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex: 1;
}

@media (min-width: 1201px) {
  body {
    display: flex;
    flex-direction: column;
    align-content: center;
  }
  .main {
    max-width: 1200px;
    align-self: center;
  }
}

.formContainer {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  min-height: 600px;
}
.formTitle {
  font-size: 2em;
  color: white;
  text-align: center;
  width: 90%;
}

.form {
  margin-top: 2em;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inputContainer {
  width: 100%;
  height: 3em;
  margin-top: 1em;
  color: #ffffff;
}

.textInput {
  color: #ffffff;
  border-radius: 9px;
  border: 1px solid #ffffff;
  width: 100%;
  height: 100%;
  background-color: transparent;
  font-size: 1.5em;
  /* text-align: right; */
  padding-right: 3%;
  padding-left: 3%;
}

.textInput::placeholder {
  font-family: "Questrial", sans-serif;
}
.textInput:focus {
  background: #34b8c2;
  outline: none;
}

.buttonFormContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.buttonForm {
  cursor: pointer;
  background-color: #60d7e6;
  width: 50%;
  height: 2em;
  border-radius: 11px;
  border: 1px solid #60d7e6;
  font-size: 1.5em;
  color: #ffffff;
}

.validation {
  display: none;
  color: #ffffff;
  font-size: small;
  text-align: left;
  width: 95%;
  margin-top: 3px;
}
.validationConditions {
  margin-left: 2.5%;
}

.loading {
  display: none;
  color: #fff;
}

.lds-dual-ring {
  width: 30px;
  height: 30px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  margin: 3px;
  border-radius: 50%;
  border: 2px solid #57d2bd;
  border-color: #57d2bd transparent #57d2bd transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.deskContainer {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deskAsset {
  margin-left: 15%;
  width: 100%;
}

.mobileContainer {
  display: none;
}

@media (max-width: 780px) {
  .main {
    flex-direction: column;
    align-items: center;
  }
  .formContainer {
    width: 100%;
    min-height: 700px;
  }
  .deskContainer {
    display: none;
  }
  .formTitle {
    font-size: 1.8em;
    width: 90%;
  }

  .form {
    margin-top: 1.5em;
    width: 80%;
  }

  .inputContainer {
    height: 2.5em;
    margin-top: 1.5em;
  }

  .textInput {
    font-size: 1.1em;
  }

  .buttonForm {
    margin-top: 1em;
    width: 90%;
    height: 1.5em;
    font-size: 1.5em;
  }
  .mobileContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
  }
  .mobileAsset {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .formContainer {
    width: 100%;
    min-height: 600px;
  }
  .formTitle {
    font-size: 1.5em;
    width: 90%;
  }

  .form {
    margin-top: 1em;
    width: 80%;
  }

  .inputContainer {
    height: 2em;
    margin-top: 1em;
  }

  .textInput {
    font-size: 1em;
  }

  .buttonForm {
    margin-top: 1em;
    width: 90%;
    height: 1.5em;
    font-size: 1.5em;
  }
}
