body .container-form {
  display: flex;
  width: 100%;
  height: calc(100vh - 60px);
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  position: relative;
}
body .container-form--login {
  height: 100vh;
}
body .container-form--login .ellipse-outside {
  background-color: #ffffff;
  height: 100vh;
  width: 100vh;
  border-radius: 50%;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
body .container-form--login .ellipse-inside {
  background-color: #f5f5f5;
  height: 80vh;
  width: 80vh;
  border-radius: 50%;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 1px 18px 21px rgba(0, 0, 0, 0.34);
}
body .container-form__login, body .container-form__resetpass {
  transform: translateY(-30%);
  width: 300px;
  display: flex;
  flex-direction: column;
  z-index: 5;
}
body .container-form__login .container-form__box-inputs, body .container-form__resetpass .container-form__box-inputs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}
body .container-form__login .container-form__box-inputs .container-form__case-input, body .container-form__resetpass .container-form__box-inputs .container-form__case-input {
  border: 1px solid #c1c1c1;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
  padding: 1px 1px 1px 50px;
  height: 45px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
body .container-form__login .container-form__box-inputs .container-form__case-input:last-child, body .container-form__resetpass .container-form__box-inputs .container-form__case-input:last-child {
  margin-bottom: 0;
}
body .container-form__login .container-form__box-inputs .container-form__case-input .container-form__case-icon, body .container-form__resetpass .container-form__box-inputs .container-form__case-input .container-form__case-icon {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
body .container-form__login .container-form__box-inputs .container-form__case-input .container-form__case-icon--white, body .container-form__resetpass .container-form__box-inputs .container-form__case-input .container-form__case-icon--white {
  display: block;
}
body .container-form__login .container-form__box-inputs .container-form__case-input .container-form__case-icon--dark, body .container-form__resetpass .container-form__box-inputs .container-form__case-input .container-form__case-icon--dark {
  display: none;
}
body .container-form__login .container-form__box-inputs .container-form__case-input .container-form__input, body .container-form__resetpass .container-form__box-inputs .container-form__case-input .container-form__input {
  font-family: "Arial", serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  color: #000;
  width: 100%;
  border: 0px solid #ffffff;
  outline: none;
  background-color: #f5f5f5;
}
body .container-form__login .container-form__box-inputs .container-form__case-input .container-form__input::placeholder, body .container-form__resetpass .container-form__box-inputs .container-form__case-input .container-form__input::placeholder {
  font-family: "Arial", serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  text-transform: uppercase;
  color: #000;
}
body .container-form__login .container-form__box-button, body .container-form__resetpass .container-form__box-button {
  background: #00c389;
  border: 1px solid #00c389;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  font-family: "Arial-bold", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  width: 300px;
  padding: 12px;
  cursor: pointer;
  margin-bottom: 12px;
}
body .container-form__login .container-form__box-button:last-child, body .container-form__resetpass .container-form__box-button:last-child {
  margin-bottom: 0;
}
body .container-form__login .container-form__box-button--disabled, body .container-form__resetpass .container-form__box-button--disabled {
  background-color: #B3DFC8;
  border: 1px solid #B3DFC8;
  pointer-events: none;
}
body .container-form__login {
  transform: translateY(0);
}
body .container-form__login .container-form__logo {
  margin: 0 auto 45px;
  height: 135px;
  width: 135px;
}
body .container-form__login .container-form__logo .white-logo {
  display: block;
}
body .container-form__login .container-form__logo .dark-logo {
  display: none;
}
body .container-form__resetpass .container-form__title {
  font-family: "Arial-bold", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 25px;
  color: #000;
  margin-bottom: 20px;
}

@media (max-width: 765px) {
  body .container-form--login .ellipse-outside {
    width: 375px;
    height: 375px;
    top: 25px;
  }
  body .container-form--login .ellipse-inside {
    width: 305px;
    height: 305px;
    top: 0;
    transform: translate(-50%, 60px);
  }
  body .container-form__login {
    height: 100%;
    padding: 152px 0 0 0;
  }
  body .container-form__login .container-form__logo {
    margin: 0 auto 150px;
  }
}
/*# sourceMappingURL=auth.css.map */
