*{
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    text-decoration: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: all 0.2s ease;
}

html{
    font-family: "Montserrat", sans-serif;
    background: url(../imagens/imagens_red/le-trung-IOnX2aen4jY-unsplash.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin: 0;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.voltar{
    background-color: #ffffff;
    width: 6rem;
    height: 1.5rem;
    position: absolute;
    top: 3rem;
    left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    border-radius: 3px;
    z-index: 99;
}

.voltar:hover{
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.container-trabalhe{
    background-color: transparent;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255 , 255, 255, .3);
    padding: 20px;
    border-radius: 10px;
    width: 23rem;
    height: auto;
    text-align: center;
}

.container-trabalhe h1{
    font-size: 41px;
    text-transform: uppercase;
    padding-bottom: 20px;
    color: #fff;
    font-weight: 300;
}

.input-formulario{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.input-form{
    width: 90%;
    height: 3rem;
    border-radius: 30px;
    font-size: 16px;
    padding: 0 10px;
    background: transparent;
    border: 2px solid rgba(255 , 255, 255, .5);
    caret-color: #fff;
    color: #fff;
    margin-top: 1rem;
}

.input-form::placeholder{
    color: #d6d6d6;
}

.input-form:not(:last-child){
    margin-bottom: 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*Botão de "Enviar"*/

.btn-submit{
    width: 90%;
    height: 3rem;
    border-radius: 30px;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    margin-top: 5rem;
}

.btn-submit:hover{
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255 , 255, 255, .3);
}

@media (max-width:400px) {
    .container-trabalhe{
    width: 95vw;
    height: auto;

    main{
    height: 100%;
    }
}
}