.login.container {
    background-color: var(--preto-05);
}

.__login {
    display: none;
}

.__iniciarSessao {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    padding: 5rem;

}

.__iniciarSessao p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--preto-100);
    text-align: center;
}

.__iniciarSessao input {
    border-radius: 5px;
    border: none;
    height: 2.65rem;
    background-color: var(--branco);
    font-size: 1rem;
    font-weight: 400;
    color: var(--preto-50);

}

.__iniciarSessao button {
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 0.8rem 1rem;
    gap: 0.625rem;
    background-color: var(--azul-100);
    color: var(--branco);
    border: none;
    width: 7rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}


@media screen and (min-width: 769px) and (max-width: 1024px) {
    .__iniciarSessao {
        align-items: center;
    }

    .__iniciarSessao input {
        align-self: center;
        max-width: 352px;
        width: 37rem;
    }
}

@media screen and (min-width: 1024px) {
    .__iniciarSessao {
        align-items: center;
    }

    .__iniciarSessao input {
        align-self: center;
        max-width: 352px;
        width: 37rem;
    }
}