Hotmart Send + Elementor + CSS

Nesse vídeo te ensino a utilizar os formulários da Hotmart Send dentro do Elementor e estilizar com CSS, deixando seu formulário bonito!

Código CSS utilizado no vídeo:

				
					form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input{
    font-family: Montserrat;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px !important;
    background-color: #202020;
    border-style: solid !important;
    border-color: #00CA29 !important;
    border-width: 0px 0px 2px 2px !important
}

#phone, #first_name, #email{
     color: #fff !important;
}

button{
    background-image: linear-gradient(135deg, #29f252 0%, #0d7522  51%, #58ff4d  100%);
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: #fff;
    font-family: Montserrat !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    box-shadow: 0 0 20px #29f252;
    border-radius: 10px;
    border: none !important;
}

button:hover {
    background-position: right center; /* change the direction of the change here */
    text-decoration: none;
    transform: scale(1.05);
}