/* Contact Form Container */
.contact-form-container {
  width: 100%;
  /* background-color: #411c5a; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

#contact-form {
  max-width: 400px;
  width: 80%;
  /* background-color: red; */
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 12px;

  justify-content: center;

  /* background-color: #fdfdfd; */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Inputs and Textarea */
#contact-form input,
#contact-form textarea {
  padding: 12px 15px;
  border: 0.7px solid #e0dddd;
  border-radius: 8px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.8rem;
  font-family: "Quicksand", sans-serif;
}

/* Focus effect */
#contact-form input:focus,
#contact-form textarea:focus {
  border-color: #6c63ff; /* Accent color */
  box-shadow: 0 0 6px rgba(108, 99, 255, 0.3);
}

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

/* Submit Button */
#contact-form button {
  width: 80px;
  padding: 8px 8px;
  background-color: #bf0e7d;
  color: #fff;
  /* font-size: 16px; */
  font-weight: 600;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.2s;
}

/* Hover effect */
#contact-form button:hover {
  background-color: #892a66;
  transform: translateY(-2px);
  opacity: 0.8;
}

/* Responsive */
@media (min-width: 600px) {
  #contact-form input,
  #contact-form textarea {
    font-size: 1.2rem;
  }
}
