/* estilos.css */

/* Fondo con imagen */
body {
  background-image: url('../img/fondo.jpg');
  background-size: cover;           /* La imagen cubre todo sin deformarse */
  background-position: center;      /* Siempre centrada */
  background-repeat: no-repeat;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.login-container {
  width: 100%;
  max-width: 420px;
}

.login-box {
  width: 100%;
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}



.toggle-wrapper {
  border-left: 0;
  border-radius: 0 0.375rem 0.375rem 0; /* redondea solo la esquina derecha */
}

input.form-control.border-end-0 {
  border-right: 0;
  border-radius: 0.375rem 0 0 0.375rem; /* redondea solo la izquierda */
}

.toggle-password {
  cursor: pointer;
  color: #6c757d;
  transition: color 0.3s ease;
  font-size: 1.2rem;
}

.toggle-password:hover {
  color: #000;
}

@media (max-height: 400px) and (orientation: landscape) {
  .login-box {
    max-height: 90vh;
    overflow-y: auto;
  }

  body {
    align-items: flex-start;
    padding-top: 2vh;
  }
}


