body.login-page {
    background-image: url('../images/fondo.jpg');
    background-size: cover; /* Ajusta el tamaño de la imagen para cubrir todo el fondo */
    background-position: center; /* Centra la imagen en el fondo */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    height: 100vh; /* Ajusta la altura al 100% de la ventana visible */
    margin: 0; /* Elimina el margen predeterminado del cuerpo */
    display: flex; /* Usa display flex para centrar verticalmente los elementos */
    justify-content: center; /* Centra horizontalmente los elementos */
    align-items: center; /* Centra verticalmente los elementos */
    color: #fff; /* Color de texto blanco, asegúrate de que el texto sea visible */
    opacity: 0.95;
    flex-direction: column;
}

body.email-page, body.reset-page, body.confirm-page {
    background: rgba(236, 236, 236, 0.9);
    height: 100vh; /* Ajusta la altura al 100% de la ventana visible */
    margin: 0; /* Elimina el margen predeterminado del cuerpo */
    display: flex; /* Usa display flex para centrar verticalmente los elementos */
    justify-content: center; /* Centra horizontalmente los elementos */
    align-items: center; /* Centra verticalmente los elementos */
    font-size: 14px;
    flex-direction: column;
}

.login-box {
    width: 500px;
    background: rgba(234, 234, 236, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.452);
    text-align: center;
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer {
    background: rgba(56, 55, 55, 0.5);
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.7);
    position: fixed;
    bottom: 0;
}

.footer img {
    height: 50px; /* Ajusta el tamaño según tus necesidades */
    margin-top: 0px; /* Espacio superior */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .login-box {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .login-box {
        width: 90%;
        margin: auto;
    }
    
    .login-logo a {
        font-size: 24px;
    }
}
