html, body {
    height: 100%;
}

.body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
}

.main-login {
    margin-inline: auto;
    padding-inline: 1rem;
}

.logo-form {
    display: none;
}

.texto-footer {
    font-size: 0.8em;
    position: absolute;
    bottom: 6vh;
    text-align: center;
    width: 100%;
    font-size: 0.9rem;
    color: #555;
}

.segi-footer, .sti-footer {
    color: #a6a6a69a;
}

.titulo-header {
    font-size: 1.5rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 769px) {
    body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10vh;
        align-items: center;
    }

    .logo-form {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
    }
    
    .title-form {
        font-size: 1.8em;
        text-transform: capitalize;
        color: #408E7F;
        text-align: center;
        font-weight: bold;
    }

    .texto-footer {
        position: relative;
    }
}