
h3{
    background: linear-gradient(116.17deg, #0CA4A5 4.51%, #306579 95.36%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.8rem;
    font-weight: bold;
    
}

.subtitulo{
    padding-bottom: 30px;
}

.subtitulo p{
    font-size: 1.25rem;
    line-height: 1.4;
}

.underline{
    text-decoration:underline;
}

#decoracao{
    background-color: white;
    z-index: 1000;
    min-height: 400px;
    justify-content: flex-start;
    background-image: url(../img/joypad.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0 50%;
    background-position: fixed;
}

#conteudo{
    padding: 10px;
    justify-content: flex-start;
    min-height: 100%;
}

.passo{
    position: relative;
    left: 1000px;
    max-width: max(700px, 90%);
    min-height: max(90%, auto);
    padding: 40px;
    background-color: var(--azul-fundo-100);
    border-radius: 10px;
    transition: transform 1s;
}

form{
    margin-bottom: 40px;
}

label{
    font-size: 1rem;
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form_field{
    margin-block: 20px;
}

.form_field p{
    padding-bottom: 10px;
    font-size: 0.8rem;
}

input, select{
    font-family: 'Roboto', 'sans-serif';
    font-size: 1.25rem;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--azul-claro-100);
    color: var(--azul-escuro);
    min-width: min(80%, 500px);
    background-color: white;
}

select[type="option"]:disabled{
    color: red;
}

input::placeholder{
    color: var(--azul-claro-200);
    font-weight: 300;
}

.acoes{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.continuar{
    background-color: var(--azul-escuro);
    color: white;
    display: flex;
    padding: 10px 30px;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
}

.continuar:hover{
    background-color: var(--azul-intermediario);
    transform: scale(1.1);
}

.voltar{
    cursor: pointer;
}

.voltar:hover{
    transform: scale(1.1);
}

.voltar:hover svg path{
    fill: var(--azul-intermediario);
}

.continuar__icone{
    height: 33px;
}

.continuar__texto{
    font-size: 1.5rem;
    font-weight: 900;
}


@media (min-width:2100px) {
    :root{
        font-size: 30px;
    }

}

@media (max-width:600px) {
    :root{
        font-size: 12px;
    }
    #container_geral{
        position: relative;
        justify-content: flex-start;
        padding-top: 20px;
    }
    #topo{
        padding-bottom: 20px;
        min-height: 50px;
    }
    #corpo{
        width: 100%;
        height: auto;
        display: block;
        justify-content: center;
        align-items: center;
    }
    #conteudo{
        z-index: 0;
    }
    #decoracao{
        max-height: 150px;
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100px;
        z-index: -1;
        background-size: 60px;
        background-position: 0 30px;
    }
    
    
}