/* General form styling */
.contact-message-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.contact-message-form label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.contact-message-form input,
.contact-message-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-message-form input[type="text"],
.contact-message-form input[type="email"],
.contact-message-form input[type="password"] {
  font-family: Arial, sans-serif;
}

.contact-message-form textarea {
  resize: vertical;
  max-height: 200px;
  min-height: 100px;
}

/* Styling for the buttons to be placed side by side */
.contact-message-form .form-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;  /* Adds space between the buttons */
}

.contact-message-form .form-actions .form-submit {
  width: 48%;  /* Ensures buttons take up half the space each */
}

/* Styling the 'Send message' button (Blue) */
.contact-message-form .form-actions #edit-submit {
  background-color: blue;
  border: 2px solid blue;
  color: white;
  display: block;
  margin: 0 auto;
}

.contact-message-form .form-actions #edit-submit:hover {
  background-color: white;
  border: 2px solid blue;
  color: blue;
}


/* Optional: Button hover effect */
.contact-message-form .form-submit:hover {
  opacity: 0.9;
}

