.input-alert {
    display: none;
    padding: 2px 8px;
    border-radius: 12px;
    border: 2px solid;
    font-size: 11px;
    width: fit-content;
    margin-left: 8px;
    color: white;
}

.checkbox-cadastro {
    margin-top: 4px;
}

.login-check-label{
    font-size: 12px;
    max-height: 90px;
    overflow-y: auto;
    color: white;
    font-weight: 500;
    margin-left: 12px;
}

.login-check-label::-webkit-scrollbar {
    width: 4px;
}

.login-check-label::-webkit-scrollbar-track {
    width: 4px;
    background-color: gray;
    border-radius: 4px;
}

.login-check-label::-webkit-scrollbar-thumb {
    width: 4px;
    background-color: white;
    border-radius: 4px;
}

.final-cadastro-box {
    width: 60%;
    height: fit-content;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 24px;
    margin: 24px 0px;
    color: white;
    animation: showConfirmacao 2s ease 0s forwards;
}

@keyframes showConfirmacao {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes hideFormCadastro {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.confirmacao-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: none;
    padding: 12px;
    margin-bottom: 16px;
    background-color: #106e42;
}

.confirmacao-icon {
    width: 100%;
    height: auto;
}

.confirmacao-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.confirmacao-description {
    font-size: 18px;
}

.confirmacao-btn-box {
    display: flex;
    flex-direction: row;
    margin-top: 24px;
}

.confirmacao-btn {
    border-radius: 8px;
    padding: 4px 8px;
    font-weight: 600;
}

.fill {
    border: 1px solid white;
    background-color: white;
    color: #113260;
}

.fill:hover {
    background-color: rgb(219, 219, 219);
}

.empty {
    border: 1px solid white;
    background-color: transparent;
    color: white;
    margin-right: 12px;
}

.empty:hover {
    background-color: white;
    color: #113260;
}

.input-check-box {
    width: 70%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    margin-bottom: 16px;
}