/* Form Specific Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

button[type="submit"] {
  background: #16a34a;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}

button[type="submit"]:hover {
  background: #15803d;
}

#status {
  margin-top: 15px;
  font-weight: bold;
  display: none;
}

.success {
  color: #16a34a;
}

.error {
  color: #dc2626;
}

/* Dark Mode */
html.dark-mode .form-group label {
  color: #ccc;
}

html.dark-mode #contact-form input,
html.dark-mode #contact-form textarea {
  background-color: #333;
  color: #fff;
  border-color: #555;
}

html.dark-mode #contact-form input:focus,
html.dark-mode #contact-form textarea:focus {
  border-color: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

html.dark-mode button[type="submit"] {
  background: #16a34a;
}

html.dark-mode button[type="submit"]:hover {
  background: #15803d;
}

html.dark-mode .success {
  color: #4ade80;
}

html.dark-mode .error {
  color: #f87171;
}