@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');

ul li:nth-child(4){
    text-shadow: 5px 5px 10px #EEB4A9, 0 0 25px #EEB4A9, 0 0 5px #EEB4A9;
}


.content{
    width: 65%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
    width: 100%;
    max-width: 100%;
    margin: 12vh 0 18px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: relative;
    opacity: 0.8;
}

form h3{
    color: #555;
    font-weight: 800;
    margin-bottom: 20px;
}
form input{
    height: 10px;
}
form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #f5f5f5;
    font-size: 14px;
}
form select{
    height: 40px;
    border: 0;
    margin: 10px 0;
    background: #f5f5f5;
    font-size: 16px;
    padding-left:10px;
}
form button{
    padding: 5px;
    background: #E95689;
    color: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #c9c9c9, 0 0 25px #c9c9c9, 0 0 5px #c9c9c9;
    font-size: 1rem;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;

}
form button:hover{
    font-weight: bold;
}

.background {
    padding-top: 0;
}




/* RESPONSIVE */
@media (max-width:1450px){
    .content{
        width: 80%;
    }
}

@media (max-width:768px){
    .content{
        width: 90%;
        position: relative;
        }
    .wrapper{
        overflow-x: hidden;
        position: relative;
    }
    .background{
        height: 90vh;
    }
    form{
        position: relative;
        width: auto;
    }
    footer{
        font-size: 0.8rem;
        position: relative;
        bottom: 0vh;
    }
}

@media (max-width:400px){
    form{
        position: relative;
        font-size: 0.8rem;
    }
    form h3{
        color: #555;
        font-weight: 800;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }
    form p{
        font-size: 0.8rem;
    }
    footer{
        font-size: 0.6rem;
    }
}