html, body{
  height: 100%;
}

body{
  display: flex;
  margin: 0;
  background-image:
    linear-gradient(#35483BCC, #35483BCC),
    url("../../images/3e7990f2284a5dc174ddc9db78ee04cd72bec26b.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  min-height: 100vh; /* por si el contenido es poco */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;

}

.img-logo {
  width: 150px;
  height: auto;
}


.contenedor-principal {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.contenedor-menu-responsive-relleno {
  display: none;
}
.contenedor-barra-menu-responsive {
  display: none;
}

.contenedor-formulario, .contenedor-formulario-box {
  display: flex;
  min-width: 290px;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-shrink: 0;
} 

.contenedor-formulario-box {
  border-radius: 8px;
  border: 1px solid rgba(103, 143, 115, 0.20);
  background: rgba(103, 143, 115, 0.20);
  backdrop-filter: blur(5.699999809265137px);
}

.contenedor-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.contenedor-doble-login {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.contenedor-input-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
  align-items: stretch;
}

.input-container {
  position: relative;
  width: 100%;
}

.input-container input {
  width: 100%;
  padding-right: 40px;
  /* espacio para el ícono */
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #888;
  border: none;
  background: none;
}

body .menu{
  display: none;
}

body .menu-desktop{
  display: none;
}
