body {
  font-family: Arial, sans-serif;
  background: #f5f6fa;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
}
.form-container {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  max-width: 50%;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.form-container img {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 120px;
}
.form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: #333;
}
label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
  color: #444;
}
input,
select,
textarea {
  width: -webkit-fill-available;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 10px;
}
textarea {
  resize: vertical;
  min-height: 60px;
}
button {
  width: 100%;
  padding: 12px;
  background: #0077cc;
  border: none;
  color: #fff;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: #005fa3;
}
