*{
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

#p1{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#main_cadastro{
    background-color: #E6DAA9;
    width: 90%;
    height: 85vh;
    border-radius: 8px;
    display: grid;
    grid-template-rows: 1fr 2fr 1fr;
    grid-template-columns: 1fr;
    justify-content: center;
    padding: 20px 100px;
}

#article_cadastro{
    grid-row: 1/2;
    align-self: center;
    justify-items: center;
}

#article_cadastro h2{
    color: #8B0000;
    font-size: 64px;
    letter-spacing: 10px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
}

#div_article{
    background-color: #ffffff;
    width: 30%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    transition: 0.3s;
}

#div_article p{
    color: #8B0000;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
}

#div_article:hover {
    background-color: transparent;
}


#section_cadastro{
    grid-row: 2/3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 5%;
    width: 100%;
}

#sect_left{
    grid-column: 1/2;
}

#txt_left h5{
    font-family: "Outfit", sans-serif;
    color: #000000;
    font-size: 24px;
    font-weight: 500;
}

#inputs_txts{
    display: grid;
    grid-template-rows: 1fr 2fr 1fr 2fr 1fr 2fr 1fr 2fr;
    padding-top: 2%;
    gap: 5%;
    align-items: center;
}

.txts_in_input{
    font-family: "Inter", sans-serif;
    color: #000000;
}

.inputs input{
    width: 100%;
    border: 1px solid #8B0000;
    height: 4vh;
    padding: 5px 15px;
    color: #000000;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.5px;
    border-radius: 10px;
}

#sect_right{
    grid-column: 2/3;
    justify-items: flex-end;
    align-self: center;
}

#bloco_right{
    width: 70%;
    height: 30vh;
    margin-right: 7%;
    margin-top: 10%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 7%;
    border: 1px solid #8B0000;
    background-color: #ffffff;
}

#bloco_right h5{
    color: #8B0000;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
}

#bloco_right p{
    color: #8B0000;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    margin-top: 5%;
}

#bloco_right a{
    text-decoration: none;
    width: 80%;
    height: 5vh;
    margin-top: 7%;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8B0000;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    background-color: #E6DAA9;
    transition: 0.3s;
}

#bloco_right a:hover{
    background-color: transparent;
    border: 1px solid #8B0000;
}