/* Estilos generales */
body {
    font-family: Arial, sans-serif; /* Cambia la fuente aquí */
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}
h2 {
    font-family: Arial, sans-serif; /* Cambia la fuente aquí */
}

/* Estilos del formulario de inicio de sesión */
form {
    width: 350px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Estilos de la página de bienvenida */
p {
    font-size: 18px;
    color: #007bff;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* Estilos para el botón de mostrar/ocultar contraseña */
.show-password-button {
    background-color: #007bff;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.show-password-button:hover {
    background-color: #0056b3;
}
