
* {
    font-family: Arial, sans-serif;
}

h2 {
    text-transform: uppercase;
}

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Color de fondo de la página */
}

.login-container {
    text-align: center;
}

.login-form {
    width: 300px; /* Ancho del formulario */
    padding: 20px;
    background-color: #fff; /* Color de fondo del formulario */
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Sombra del formulario */
}

.login-form h2 {
    margin-bottom: 20px;
    color: #333; /* Color del texto del título */
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc; /* Borde del input */
    border-radius: 4px;
    box-sizing: border-box;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff; /* Color de fondo del botón */
    color: #fff; /* Color del texto del botón */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Transición al pasar el mouse */
}

.login-form button:hover {
    background-color: #0056b3; /* Color de fondo del botón al pasar el mouse */
}
