	body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url("https://www.goprodigital.com.br/flayer/MomentsParis/images/static/bg.png");
    background-size: cover;

    padding: 50px;

    font-family: 'Montserrat';
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
}
h1 {
    font-weight: 700;
    font-size: 21px;
}

label {
    font-weight: 600;

}

*:focus {
    outline: none;
  }

#logo {
    width: 50%;
    margin-bottom: 3%;
}

#form {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 3%;
}

#name{
    padding: 10px 25px;
    border-radius: 80px;
    width: 80%;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(184, 184, 184);
}
#cidade{
    padding: 10px 25px;
    border-radius: 80px;
    width: 80%;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(184, 184, 184);
}
#telefone{
    padding: 10px 25px;
    border-radius: 80px;
    width: 80%;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(184, 184, 184);
}

#name::placeholder {
    color: rgb(133, 133, 133);
}
#cidade::placeholder {
    color: rgb(133, 133, 133);
}

#positionX {
    width: 100%;

}

#imagens {
    padding: 10px 25px;
    border-radius: 50px;
    width: 85%;
}

#cnv {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: -999999;
}
#c {
    width: 70%;
    z-index: 999999;
}

button {
    padding: 10px 56px;
    margin-top: 15px;
    border-radius: 40px;
    background-color: white;
    border: none;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}
button:hover{
    background-color: rgb(153, 153, 153);
}
#return{
    display: inline-block;
    align-self: end;
    color: white;
    text-decoration: none;
    width: 75px;
}

#return:hover::after {
    content: 'Voltar';
    margin-top: -20px;
    font-weight: 700;
    margin-left: 10px;
    overflow: hidden;
    animation-direction: alternate;
    animation-name: txtAnim;
    animation-duration: 0.5s;
}

i {
    font-size: 25px;
    align-self: end;
}

@keyframes txtAnim {
    from {
        opacity: 0;
        margin-left: -30px;
    }

    to {
        opacity: 1;
        margin-left: 10px;
    }

}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    #form {
        flex: 1;
    }
}
