/* Form Container */
.contact-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ensure inputs stay within container on small screens */
.contact-form * {
  box-sizing: border-box;
}

/* Form Labels */
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

/* Input Fields */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%; /* Ensure inputs take up only the container's width */
  max-width: 100%; /* Prevent inputs from exceeding container width */
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease-in-out;
}

/* Focus State */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #4bc19c;
  outline: none;
  background-color: #fff;
}

/* Textarea */
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.contact-form button[type="submit"] {
  background-color: #4bc19c;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%; /* Ensure the button is responsive */
  transition: background-color 0.3s ease-in-out;
}

.contact-form button[type="submit"]:hover {
  background-color: #6c89cd;
}

/* Form responsiveness for smaller screens */
@media screen and (max-width: 768px) {
  .contact-form {
      padding: 15px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form select,
  .contact-form textarea,
  .contact-form button[type="submit"] {
      font-size: 14px;
  }

  .contact-form button[type="submit"] {
      padding: 10px;
  }
}
