/* contact.css */

form#contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 300;
}

form#contact-form input,
form#contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem; /* add bottom margin for spacing */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

#contact-form button {
  background-color: #007acc;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

/* Adjust the button spacing */
form#contact-form button {
  margin-top: 1rem; /* slightly smaller top margin */
  padding: 0.75rem 1.5rem;
  background-color: #007acc;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


#contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

#contact-form h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

#contact-form button:hover {
  background-color: #005fa3;
}

#message {
  height: 200px;
}
