/* Estilos específicos para la página de login */
body.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('../images/fondo.png');
    background-size: cover;
    background-position: center;
}
.eye {
  position: absolute;
  right: 10px;
  top: 65%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  cursor: pointer;
}
.login-icon{
    height: 25%;
    width: 25%;
}
#password-container{
    position: relative;
    width: 100%;
    
}
input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  font-size: 16px;
}
/* Contenedor del Login */
#login-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

#login-container h1 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: #1e3a8a; /* Azul oscuro de tu tema */
    font-weight: 600;
}

#login-container p {
    margin-bottom: 2rem;
    color: #6b7280;
}

/* Formulario */
#login-form div {
    margin-bottom: 1.25rem;
    text-align: left;
}

#login-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

#login-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
    transition: border-color 0.2s, box-shadow 0.2s;
}

#login-form input:focus {
    outline: none;
    border-color: #2563eb; /* Azul brillante */
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

#login-form button {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    background-color: #1e3a8a;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

#login-form button:hover {
    background-color: #2563eb;
}

/* Mensaje de Error */
#error-message {
    background-color: #fee2e2;
    color: #b91c1c;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    text-align: center;
}
