body {
    font-family: Arial, sans-serif;
    background-color: #7e7e7e;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 350px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h1 {
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 10px; /* Aumentar espacio entre el texto de la etiqueta y el campo de entrada */
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
}

button {
    padding: 10px 20px;
    background-color: #838999;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px; /* Aumentar espacio entre el botón y los campos de entrada */
    font-family: 'Roboto', Arial, sans-serif;
}

button:hover {
    background-color: #687178;
    font-family: 'Roboto', Arial, sans-serif;
}

.logo {
    text-align: center;
}

.logo img {
    width: 100px;
    height: 100px;
}

.error-message {
    text-align: center;
    font-weight: bold;
    color: red;
    font-family: 'Roboto', Arial, sans-serif;
}


