.contact-form-container {
  max-width: 500px;
  margin: 60px auto 40px auto;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 32px 24px;
}
.contact-form-container h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #ff0064;
}
.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  font-family: Arial, sans-serif;
}
.contact-form textarea {
  min-height: 80px;
  resize: vertical;
}
.contact-form .error {
  color: #ff0064;
  font-size: 0.95em;
  margin-bottom: 8px;
}
.contact-form .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 1.1em;
  border-radius: 6px;
  background: #ff0064;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form .btn-primary:hover {
  background: #e6005a;
}
.contact-success {
  color: #009e60;
  text-align: center;
  margin-top: 18px;
  font-weight: 500;
}
