/* Form styles */

.form1{
    display: flex;
    flex-direction: column;
}

.formTitle{
    font-family: 'Crimson Text', serif;
    color: white;
    font-size: 3.5rem;
    margin: 1rem 1rem 2rem 1rem;
    align-self: center;
}

.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

::placeholder{
    color: white;
}

.formInput{
    width: 100%;
    padding: 1rem;
    margin: 0.5rem;
    background: #4d4d4d;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.formTextarea{
    width: 100%;
    height: 150px;
    max-height: 200px;
    padding: 1rem;
    margin: 1rem;
    background: #4d4d4d;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.formButton{
     width: 100%;
     height: 40px;
     background:#c19b76;
     border: none;
     color: #fff;
     margin: 1rem;
}

.formButton:hover{
    background: #a17549;
    transition: 400ms;
}


/* Thanks Messagge */

.thanksMessagge{
    width: 100%;
    height: auto;
    display: none;
    align-items: center;
    justify-content: center;
    color: #24ad49;
    padding: 1rem;
}

.thanksMessagge h3{
    font-size: 2.5rem;
}

#tipo{
    display: none;
}

@media screen and (max-width: 500px){
    .formTitle{
        font-size: 2rem;
    }
}








