Contact us
/* Style the form container */
.contact-form-container {
width: 100%;
max-width: 500px;
margin: 0 auto;
}
/* Style the form fields */
.contact-form-input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
/* Style the submit button */
.contact-form-submit {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
/* Change button color on hover */
.contact-form-submit:hover {
background-color: #45a049;
}
/* Style the form labels */
.contact-form-label {
font-weight: bold;
}
/* Style the error message */
.error-message {
color: red;
margin-top: 5px;
}