.container-cadastro-passo {
    position: relative;
    z-index: 3;
    width: 100%;
    /*height: fit-content;*/
    margin-inline: auto;
    background-color: var(--backgroud-card);
    border-radius: 20px;
    padding: 47px;
    /* text-align: center; */
    margin-top: 2.5%;
    height: 100%;
}
.container-primeiros-passos{
    width: 60% !important;
}
.titulo-cadastro-passo{
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0E0E0E;
}

.txt-cadastro-passo{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--botao-desativado);
}
.row-cadastro{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.form-cadastro-passo {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    margin-top: 35px;
}

.div-form-cadastro-passo {
    align-self: self-start;
    width: 45%;
}


.label-form-passo{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0E0E0E;
}

.container-check-link{
   align-self: self-end;
   text-align: end;
}
.termos-uso{
    width: fit-content;
    justify-self: end;
}
.label-checkbox-form{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--botao-desativado);
}


/* Estilização para o container geral */
.container-check-link {
    display: block;
    font-family: Arial, sans-serif;
}

/* Estilização para o link */
.link-form {
    display: block;
    margin-bottom: 10px;
    color: var(--cor-azul-escuro);
    text-decoration: none;
    cursor: pointer;
}
.link-form-preto {
    display: block;
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}

.link-form:hover {
    text-decoration: underline;
}

/* Estilização básica para a div e a label do checkbox */
.div-check-form {
    position: relative;
    padding-left: 35px;
    display: inline-block;
}

.label-checkbox-form {
    user-select: none; /* impede que o texto seja selecionável */
}

/* Ocultar o checkbox original */
.custom-checkbox {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    height: 0;
    width: 0;
    left: 0;
}

/* Criar uma caixa para o pseudo-checkbox */
.custom-checkbox + .label-checkbox-form::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #ccc;
    border-radius: 4px;
}

.custom-checkbox:checked + .label-checkbox-form::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 8px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox:checked + .label-checkbox-form::before {
    background-color: #000; /* Fundo preto */
    border-color: #000; /* Borda preta */
}


.link-form{
    color: var(--cor-azul-escuro);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}



.btn-escuro-form-passo{
    border-radius: 10px;
    padding: 10px 40px 10px 40px;
    border: none;
    background-color: var(--cor-azul-escuro);
    color: #fff;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;


}

.main-border {
    background-image: url(../../../../static/imgs/dashboard/bg-passo-a-passo.png);
    min-height: 86svh !important;
    position: relative !important;
}


@media (max-width: 768px) {

    .titulo-cadastro-passo {
        font-size: 26px;
        font-family: 'Ubunto', sans-serif;
        font-weight: 700;
        color: #0E0E0E;
    }

    .container-cadastro-passo {
        position: relative;
        z-index: 3;
        width: 100%;
        height: fit-content;
        margin-inline: auto;
        background-color: var(--backgroud-card);
        border-radius: 20px;
        padding: 30px 19px;
        /* text-align: center; */
      
     
    }

    .div-form-cadastro-passo {
        align-self: self-start;
        width: 100%;
    }
    

    .btn-form{
        width: 100%;
    }
    .row-cadastro {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

   
}




@media (min-width: 769px) and (max-width: 1000px) {
    .container-cadastro-passo {
        position: relative;
        z-index: 3;
        width: 100%;
        height: fit-content;
        margin-inline: auto;
        background-color: var(--backgroud-card);
        border-radius: 20px;
        padding: 30px 19px;
        /* text-align: center; */
        margin-top: 3%;
    }

    .form-cadastro-passo {
        display: flex;
        flex-wrap: wrap;
        gap: 25px 20px;
        align-items: self-end;
        justify-content: center;
        margin-top: 35px;
    }
    .div-form-cadastro-passo {
        width: 100%;
    }
    .row-cadastro{
        display: flex;
        width: 100%;
        /* justify-content: space-between; */
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
}



@media (min-width: 1001px) and (max-width: 1400px) {
    .container-cadastro-passo {
        position: relative;
        z-index: 3;
        width: 700px;
        height: fit-content;
        margin-inline: auto;
        background-color: var(--backgroud-card);
        border-radius: 20px;
        padding: 30px 19px;
        /* text-align: center; */
        margin-top: 3%;
    }

    /* .form-cadastro-passo {
        display: flex;
        flex-wrap: wrap;
        gap: 25px 20px;
        align-items: self-end;
        justify-content: center;
        margin-top: 35px;
    } */
}