@font-face {
    font-family: "TangoSans";
    src: url("../fonts/tangosans/TangoSans.ttf") format("truetype");
}

:root {
    --corPrincipal: #4367b3;
    --corTexto: #545454;
    --input-color: #e8e8e8;
}

main {
    display: flex;
    height: auto;
    flex-direction: column;
    width: 100%;
}

.cota {
    display: none;
}

.banner {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.text_banner {
    width: 40%;
    text-align: center;
    margin-top: 4rem;
}

.text_banner h1 {
    font-size: 35px;
    font-family: 'TangoSans', sans-serif;
    color: #545454;
}

.text_banner h3 {
    font-size: 30px;
    font-family: 'TangoSans', sans-serif;
    color: #545454;
}

.alert {
    font-family: 'Times New Roman', Times, serif;
    font-size: 17px;
    margin-top: 1rem;
}

section {
    display: flex;
    width: 100%;
    height: auto;
    padding: 1rem;
    flex-direction: column;
}

.etapas_icons {
    margin-top: 4rem;
}

span {
    font-family: arial;
    font-size: 13px;
}

.row {
    width: 90%;
    height: 100%;
    display: flex;
    padding: 1rem;
    flex-direction: row;
    margin-left: 4rem;
}

.texto h1 {
    font-size: 30px;
    font-family: 'TangoSans', sans-serif;
    color: #545454;

}

.form-control,
.form-select {
    background-color: var(--input-color);
}

.selectGenero {
    width: 60%;
}

span {
    font-family: arial;
    font-size: 13px;
}

label,
input,
select {
    font-family: Arial;
}

.textForm {
    font-size: 30px;
    font-family: 'TangoSans', sans-serif;
    color: #545454;
}

.obrigatorio {
    color: red;
}

.button {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.botao {
    width: 18%;
    padding: 1rem;
    font-family: 'TangoSans', sans-serif;
    height: 50px;
    font-size: 20px;
    border: none;
    background-color: var(--corPrincipal);
    color: #ffff;
    border-radius: 5px;
}

@media (320px <=width <=480px) {
    section {
        align-items: center;
        justify-content: center;
    }

    .row {
        margin-left: 0;
    }

    .texto h1 {
        margin-left: 0;
    }

    .text_banner {
        width: 90%;
        text-align: center;

    }

    .text_banner h1 {
        font-size: 30px;
        width: 100%;
        max-width: 400px;
    }

    .alert {
        width: 90%;
    }

    .botao {
        width: 53%;
        font-size: 15px;
    }
}

@media(481px <=width <=768px) {
    section {
        align-items: center;
        justify-content: center;
    }

    .row {
        margin-left: 0;
    }

    .texto h1 {
        margin-left: 0;
    }

    .text_banner {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

    }

    .text_banner hr {
        width: 500px;
        height: 20px;
    }

    .text_banner h1 {
        font-size: 30px;
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .alert {
        width: 90%;
    }

    .botao {
        width: 53%;
        font-size: 15px;
    }
}


@media(768px <=width <=1024px) {
    section {
        align-items: center;
        justify-content: center;
    }

    .row {
        margin-left: 0;
    }

    .texto h1 {
        margin-left: 0;
    }

    .text_banner {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

    }

    .text_banner hr {
        width: 500px;
        height: 20px;
    }

    .text_banner h1 {
        font-size: 30px;
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .alert {
        width: 90%;
    }

    .botao {
        width: 53%;
        font-size: 15px;
    }
}