body {
  font-family: Arial, sans-serif;
  background: #222;
  color: white;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

form {
  background: #333;
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: 2px solid #66b3ff;
}

.error {
  color: #ff4d4d;
  font-size: 0.85rem;
  margin-top: -0.8rem;
  margin-bottom: 1rem;
  display: none;
}

button {
  background: #66b3ff;
  border: none;
  color: #222;
  font-weight: bold;
  padding: 0.7rem;
  border-radius: 7px;
  cursor: pointer;
  width: 100%;
  font-size: 1.1rem;
  transition: background 0.3s;
}

button:hover {
  background: #3399ff;
}

/* Responsive for contact page */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }
}
