* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background-color: #f9f9f9;
  /* padding: 2.5rem; */
}

.auth__wrapper {
  background-image: url("/img/bg_Asistente_Gobol.jpg");
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: calc(100dvh - 5.5rem); */
  height: 100dvh;
}

.auth__img__float {
  position: absolute;
  top: 2.5%;
  margin: auto;
  width: 180px;
}

@media screen and (width>=650px) {

  .auth__img__float {
    top: 2.5%;
    left: 5%;
    width: 180px;
  }
}

.auth__form_container {
  background-color: #003b67db;
  backdrop-filter: blur(4px);
  padding: 1.3rem;
  color: #fff;
  border-radius: .8rem;
  max-width: 400px;
  width: 90%;
  border: 2px solid #FFFFFF30;
  box-shadow: 0px 5px 9px 4px #00000040;
}

.auth__form_container::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0px;
  background-color: #00000010;
  z-index: -1;
}

.auth__form__wrap__field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
  position: relative;
}

.show__pass {
  position: absolute;
  inset: 36px 5px 0px auto;
  cursor: pointer;
  background-color: transparent;
  border: transparent;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  ;
}

.auth__form__input {
  color: #000;
  border-radius: .5rem;
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 0px;
  padding: .5rem .8rem;
  padding-right: 30px;
}

.auth__form__input__error {
  color: #000;
  border-radius: .5rem;
  display: block;
  width: 100%;
  margin-top: 5px;
  border: 0px;
  padding: .5rem .8rem;
  border: 1px solid rgb(237, 11, 11);
}


.auth__form__wrap__actions__btn {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}

.auth__form__wrap__action__link {
  color: #fff;
}

.auth__form__submit__btn {
  padding: .5rem .8rem;
  border-radius: .5rem;
  border: none;
  cursor: pointer;
}

.auth__form__wrap__list__errors {
  margin-bottom: 30px;
  color: #e40e0e;
  font-weight: bold;
  background-color: #fff;
  padding: .5rem;
  border-radius: 0.5rem;
}

.auth__form__list__errors {
  padding-left: 25px;
}

.hidden {
  display: none;
}