html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}

body {
    color: white;
}

.logo {
    width: 180px;
    height: 38px;
    margin: 15px;
}

.back-button {
    position: fixed;
    font-size: 40px;
    width: 10px;
    top: 75px;
    left: 15px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
}

    .back-button:hover {
        color: #da0000;
    }

.container-principal {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
}

.container-style {
    padding: 3rem;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
}

    .login-form input {
        margin: 1rem;
        padding: 0.5rem;
        font-size: 1.2rem;
    }

    .login-form button {
        padding: 0.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
        font-size: 1.2rem;
        background-color: #da0000;
        color: white;
        border: none;
        cursor: pointer;
    }

        .login-form button:hover {
            background-color: #b30000;
        }

        .login-form button:active {
            background-color: #a30000;
            transform: scale(0.95);
        }


.button-container {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.button-form {
    width: 100%;
}

    .button-form button {
        display: flex;
        margin-bottom: 35px;
        margin-top: 15px;
        align-items: center;
        width: 100%;
        height: 70px;
        padding: 15px;
        font-size: 16px;
        background-color: #da0000;
        color: white;
        border: none;
        cursor: pointer;
    }

        .button-form button img {
            margin-right: 10px;
            width: 30px; 
            height: 30px; 
        }

        .button-form button:hover {
            background-color: #b30000;
        }

        .button-form button:active {
            background-color: #a30000;
            transform: scale(0.95);
        }

.message {
    margin-top: 20px;
    font-size: 16px;
    color: #007bff;
}

.position-message {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: -40px;
}

.button-style {
    height: 80px;
    color: white;
    background: #da0000
}

.footer-style {
    height: 60px;
    color: white;
}
