form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
}

form .form-group {
  margin-bottom: 20px;
}

form label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #222;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
  background: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
  background: #fff;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button[type="submit"] {
  background: linear-gradient(to right, #d4af37, #b8860b);
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.4s ease;
  width: 100%;
}

form button[type="submit"]:hover {
  background: linear-gradient(to right, #b8860b, #a87800);
}

/* Flag input fix */
.iti {
  width: 100%;
}

@media (max-width: 600px) {
  form {
    padding: 20px;
  }
}
