body {
    background-color: #fd7e14;
    /* Fondo anaranjado */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #333333;
    font-size: 24px;
    /* Letras más grandes */
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #333333;
    font-size: 18px;
    /* Letras más grandes */
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-size: 16px;
    /* Letras más grandes */
}

.btn {
    background-color: #28a745;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-size: 18px;
    /* Letras más grandes */
}

.btn:hover {
    background-color: #218838;
}

.extra-options {
    margin-top: 15px;
    text-align: center;
}

.extra-options a {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    /* Letras más grandes */
}

.extra-options a:hover {
    text-decoration: underline;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
}

.checkbox-container input {
    margin-right: 5px;
}