/* 🔹 Contact section box */
.contact {
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 2rem auto;
}

/* 🔹 Form inputs and textarea */
form input,
form textarea {
  width: 100%;
  margin: 0.4rem 0;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
  min-height: 25px;
  box-sizing: border-box;
}

/* 🔹 Submit button */
form button {
  background-color: #0e1e40;
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

form button:hover {
  background-color: #003060;
}

/* 🔹 Disabled state */
button.disabled-button {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

button.active-button {
  background-color: #0e1e40;
  color: white;
  cursor: pointer;
}

button.active-button:hover {
  background-color: #003060;
}

/* 🔹 Response message */
#form-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
  padding: 0.8rem;
  border-radius: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* 🔹 Success/Error styling */
#form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* 🔹 reCAPTCHA container */
#recaptcha-container {
  display: none;
  justify-content: center;
  margin-top: 1rem;
}
