* {
  margin: 0;
  padding: 0;
}

.myBackground {
  max-width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  /*background-size: cover;*/
  color: white;
}

label {
  font-size: 14px;
}

.grid {
  width: 100%;
  height: 100%;
}

form {
  width: 75%;
}

.login {
  width: 852px;
  height: 100%;
  background-color: rgba(42, 44, 52, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.login #username,
.login #password {
  height: 48px;
}

.inputWithIcon {
  display: flex;
  position: relative;
  align-items: center;
}

.eye-icon {
  color: black;
  position: absolute;
  right: 30px;
}

.logo {
  width: 100%;
  height: 100;
}

.login-input {
  width: 420px;
}
.login-input input {
  font-size: 14px;
}

.form-check {
  margin-left: -35%;
}

.form-check-label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}

.form-check-input {
  background-color: rgba(42, 44, 52, 0.3);
  border: 1px solid #fcfcfc;
}

.form-check-input:checked {
  background-color: #82b13b;
}

.recovery-password {
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #fffefe;
  transition: 0.2s;
}

.recovery-password:hover {
  color: #82b13b;
}

#btn-login-entrada {
  width: 101px;
  height: 48px;
  background-color: #82b13b;
  border-radius: 24px;
  color: #FFF;
  transition: 0.2s;
}

#btn-login-entrada:hover {
  background-color: #82b13b;
  color: #FFF;
}

.btn-support {
  height: 46px;
  border: 1px solid #e6f5ec;
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #e6f5ec;
  width: 13rem;
}

.btn-support:hover {
  color: #e6f5ec;
}

.footer-home {
  padding: 1.250rem 0;
  background: rgba(42, 44, 52, 0.85);
  opacity: 0.85;
  font-size: 14px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

.error-input-user {
  font-size: 14px;
  font-weight: 500 !important;
  color: red;
  margin-top: 10px !important;
}

.error-input-user p {
  margin-bottom: 0 !important;
}

#togglePassword {
  cursor: pointer;
}

@media (max-width: 1400px) {
  .login {
    width: 650px;
  }

  .login img {
    margin-top: 0px;
    width: 50%;
  }

  .form-check {
    margin-left: -50%;
  }

  .btn-support {
    margin-left: 4rem;
    margin-bottom: 30px;
  }

  .login .buttons {
    margin-top: 1rem !important;
  }

  .footer-home {
    padding: 0.7rem 0;
  }
}

@media (max-width: 992px) {
  .login {
    width: 550px;
  }

  .login img {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .grid {
    display: block;
  }

  .logo {
    display: none;
  }

  form {
    width: 100%;
  }

  .login {
    width: 100%;
    padding: 1rem;
  }

  .login-input {
    width: 100%;
  }

  .login img {
    width: 75%;
  }

  .recovery-password {
    font-size: 12px;
  }
}