/*** ESTILO PARA INICIAR SESION */
.titulo-login {
  text-align: center;
  font-size: 34px;
  color: #333;
  margin-bottom: 20px;
}

/* estilo imagen login */
.imagen-login {
  display: block;           /* para poder usar margin auto */
  margin: 0 auto 20px auto; /* centra y separa del contenido inferior */
  width: 300px;             /* ancho más pequeño */
  height: auto;             /* mantiene proporción */
  border-radius: 0;         /* sin redondeo */
  object-fit: contain;      /* mantiene la imagen completa */
  border: none;             /* sin borde */
  box-shadow: none;         /* sin sombra */
}

.imagen-login:hover {
  transform: none;    /* no agranda */
  box-shadow: none;   /* sin sombra */
}




/*** ESTILO DEL LOGIN */

/* Estilos generales */
/* Estilo general de la página */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f6fa;
  display: flex;
  flex-direction: column; /* cambia de row a columna */
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Título */
.titulo-login {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

/* Contenedor del formulario */
.login-form {
  width: 300px;
  padding: 20px;
  text-align: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Campos */
.login-form input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.login-form input:focus {
  border-color: #4a90e2;
  outline: none;
}

/* Botón */
.login-form .boton {
  width: 100%;
  padding: 10px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 15px;
}

.login-form .boton:hover {
  background-color: #b83e35;
}
