.header {
    width: 100%;
    height: 80px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #981b1e;
    color: #ffffff;
}

.header_title {
    width: 100%;
    max-width: 1170px;
}

.login_wrapper {
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
}

.topics_container {
    width: 100%;
    max-width: 1170px;
    height: 190px;
    padding: 20px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    margin-bottom: 40px;
}

.icons_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.icon {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon p {
    font-size: calc(14 / 16 * 1rem);
}

.login {
    width: 100%;
    max-width: 780px;
    padding: 20px;
    background-color: #ffffff;
    margin-bottom: 40px;
}

.login_logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.login_logo img {
    width: fit-content;
    height: 100%;
}

.login_form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.login_form label {
    font-size: calc(18 / 16 * 1rem);
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 20px;
}

.login_form label:first-child {
    margin-top: 0px;
    margin-bottom: 5px;
}

.login_form input {
    width: 100%;
    padding: 10px 15px;
    font-size: calc(16 / 16 * 1rem);
    border: 1px solid #D7D7D7;
    border-radius: 10px;
    margin-bottom: 10px;
    outline: none;
}

.mensagem-erro {
    display: none;
    text-align: center;
    color: #981b1e;
    font-weight: bold;
}

.mensagem-erro.active {
    display: block;
}

.mensagem-sucesso {
    display: none;
    text-align: center;
    color: #1f981b;
    font-weight: bold;
}

.mensagem-sucesso.active {
    display: block;
}

.login_form button {
    width: 100%;
    padding: 10px 15px;
    background-color: #981b1e;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: calc(16 / 16 * 1rem);
    font-weight: bold;
    cursor: pointer;
    transition: all ease 0.3s;
    margin-top: 20px;
}

.login_form button:hover {
    background-color: #770301;
}

#popupMFA{
    position: absolute;
    z-index: 9999;
    background-color: #fff;
    text-align: center;
    padding: 24px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left:auto;
    margin-right:auto;
    max-width: 400px;
    width: 96%;
    display: none;
}

#backgroundPopup {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    z-index: 9998;
    width: 100%;
    height: 100%;
    display: none;
}

@media (max-width: 767.9px) {
    .header {
        height: 40px;
        font-size: 14px;
    }

    .icon img {
        max-width: 30px;
    }

    .topics_container{
        height: 100%;
        margin-bottom: 20px;
    }

    .icons_container {
        gap: 10px!important;
        flex-direction: column;
    }

    .login_wrapper{
        height: 100%;
    }
}