Having a hard time aligning the elements on this page: https://pideja.ca/lucnadeau/client-response/
This is the CSS, lifted and adapted from some previous Contact form I designed:
/* Contact Form */
.contact-form p {
text-align : center;
margin-left: 120px;
}
.contact-form input {
max-width : 50%;
margin : 0 auto;
}
.contact-form input {
/*max-width:150%;*/
background-color: #d1c7b3;
color: black;
font-weight: 600;
}
/*.slug-contact input#name,
.slug-contact input#email,
.slug-contact input#field_1,
.slug-contact textarea#field_3 {
background: transparent;
}*/
#message {
margin: 1.5rem auto;
border: 0;
}
#message.success {
background-color: rgb(213, 202, 184);
color: #000000;
}
#message.error {
background-color: rgb(213, 202, 184;
color : #000000;
}
As you can see I’m kinda fumbling around, although I’m almost there. Looking to get to something like:
But it still needs some adjusting. Any hints?

