body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: #ffffff; 
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 650px;
  margin: 50px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 35px;
}

h1, h3 {
  color: #2F6B2F;
}

h1 {
  text-align: center;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #2F6B2F;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #2F6B2F;
  outline: none;
}

button {
  background: linear-gradient(90deg, #76AB76, #2F6B2F);
  border: none;
  padding: 14px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.02);
  background: #2F6B2F;
}

.footer {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #666;
}

.footer a {
  color: #2F6B2F;
  text-decoration: none;
}

.form-message {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  display: none;
}

.form-message.success {
  display: block;
  color: #2F6B2F;
}

.form-message.error {
  display: block;
  color: red;
}
