@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
body {
    background-image: url('../img/back.png');
    height: 105vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
}

#titulo-formulario {
    font-size: 3em;
    font-weight: 300;
}

#formDados {
    background-color: white;
    padding: 1.5em 3em;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 1.5em;
}

#divRadio {
    display: flex;
    gap: 1em;
    padding: 1.5em 0em;
}

.inputs {
    width: 25em;
    padding: 0.8em;
    margin-bottom: 1em;
    border: none;
    background-color: whitesmoke;
    outline: none;
    transition: .3s;
    border-bottom: 1px solid whitesmoke;
}
.inputs:focus{
    border-bottom: 1px solid purple;
}

#botoes {
    display: flex;
    align-items: center;
    justify-content: center;
}

#enviar {
    background-color: white;
    width: 15em;
    height: 3.5em;
    border: none;
    padding: 0.5em;
    margin: 0.5em;
    border: 1px solid purple;
    transition: .3s;
    color: purple;
    font-weight: bold;
}

#enviar:hover {
    background-color: purple;
    border: none;
    padding: 0.5em;
    border: 1px solid purple;
    color: white;

}

#voltar {
    background-color: white;
    width: 10em;
    height: 3.5em;
    border: none;
    padding: 0.5em;
    margin: 0.5em;
    border: 1px solid black;
    transition: .3s;
    font-weight: bold;
}

#voltar:hover {
    background-color: black;
    border: none;
    padding: 0.5em;
    border: 1px solid black;
    color: white;
}

/*mobile*/
@media screen and (max-width: 768px) {
    * {
        padding: 0;
        margin: 0;
        font-family: 'Poppins', sans-serif;
        color: white;
        font-weight: 400;
    }
body{
    background-image: url('../img/back.png');
    height: 105vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
    #titulo-formulario {
        font-size: 2em;
        font-weight: 300;
        padding: 0.5em;
    }

    #formDados {
        background-color: transparent;
        /* rgb(141, 119, 8);*/
        padding: 1.5em 3em;
        margin: 5px 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 1.5em;
    }

    .inputs {
        width: 25em;
        padding: 0.8em;
        margin-bottom: 1em;
        border: none;
        background-color: whitesmoke;
        outline: none;
        transition: .3s;
        border-bottom: 1px solid whitesmoke;
        color: black;
    }

    .inputs:focus {
        border-bottom: 1px solid purple;
    }

    #divRadio {
        display: flex;
        gap: 1em;
        padding: 1.5em 0em;
    }

    #voltar {
        background-color: rgb(194, 142, 11);
        width: 10em;
        height: 3.5em;
        border: none;
        padding: 0.5em;
        margin: 0.5em;
        border: 1px solid black;
        transition: .3s;
        font-weight: bold;
    }

    #voltar:hover {
        background-color: rgb(127, 194, 11);
        border: none;
        padding: 0.5em;
        border: 1px solid black;
        color: rgb(8, 8, 8);
    }

    #enviar {
        background-color: rgb(127, 194, 11);
        width: 10em;
        height: 3.5em;
        color: white;
    }
}