.contact-form {
  background: #ffffff;
  padding: 2rem 2.5rem; /* Equal spacing horizontally */
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 90%; /* Keeps it responsive but symmetrical */
  margin: 2rem auto; /* Centers horizontally */
  font-family: 'Inter', 'Arial', sans-serif;
  box-sizing: border-box; /* Ensures padding doesn't break width */
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff007f;
  box-shadow: 0 0 6px rgba(255, 0, 127, 0.2);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background-color: #ff007f;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.15s ease;
}

.contact-form button:hover {
  background-color: #d1006d;
  transform: translateY(-2px);
}
