@charset "utf-8";

/*------------ FORM ----------*/
/*------------ FORM ----------*/
/*------------ FORM ----------*/

/*------------ DEFAULT ----------*/
/*------------ DEFAULT ----------*/
/*------------ DEFAULT ----------*/

* {
    box-sizing: border-box;
}


/*------------ STRUCTURE ----------*/
/*------------ STRUCTURE ----------*/
/*------------ STRUCTURE ----------*/

form {
/*    background-color: yellow;*/
    display: flex;
    flex-direction: column;
    padding: 50px 0 0 0;
    
}

input, textarea {
    background-color: #ECE4FF;
    margin-bottom: 25px;
    border-radius: 30px;
    border: none;
    color: #443ACF;
    font-size: 2.5em;
    padding: 10px 0 20px 15px;
    margin-top: 10px;
}

input:focus, textarea:focus {
    outline: 2px solid #443ACF;
}

label, input, textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3em;
    display: block;
}

#last-field {
    margin-bottom: 0;
}

#terms {
    padding: 60px 0 50px 0;
    text-align: center;
}



/*------------ SUBMIT BUTTON ----------*/
/*------------ SUBMIT BUTTON ----------*/
/*------------ SUBMIT BUTTON ----------*/


input[type=submit] {
    background-color: #000;
    margin: 0 auto;
    color: #fff;
    font-weight: 700;
    padding: 20px 0;
    font-size: 4.5em;
    width: 30%;
    border-radius: 120px;
    cursor: pointer;
    transition: all .2s ease;
}

input[type=submit]:hover {
    background-color: #FF49FF;
}


