body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f4f7fa;
  color: #1d2d35;
}
header {
  background: #02C39A;
  color: white;
  text-align: center;
  padding: 2em 1em;
}
.logo-wrap {
  max-width: 700px;
  margin: auto;
}
.logo {
  max-height: 70px;
  margin-bottom: 1em;
}
main {
  padding: 2em 1em;
}
.form-area {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
input, select, textarea {
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}
button {
  background-color: #0EAD69;
  color: white;
  border: none;
  padding: 1em;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
}
button:hover {
  background-color: #0a7e4f;
}
footer {
  background: #1d2d35;
  color: white;
  text-align: center;
  padding: 1em;
}
