body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #e6f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.form-container {
  width: 700px;
  height: 600px;
  margin: 60px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #1a1a1a;
}

.input-group {
  display: flex;
  gap: 15px;
}

.input-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  flex: 1;
}

.input-field label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.input-field input,
.input-field textarea {
  padding: 10px;
  border: 1px solid #000000;
  border-radius: 6px;
  font-size: 14px;
}

.radio-group {
  display: flex;
  gap: 15px;
  margin-top: 8px;
 
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 14px;
   border: 1px solid black; 
   padding: 10px;
   border-radius: 10px;
   width: 1000px;
}

.checkbox-field {
  margin-bottom: 20px;
}

.checkbox-field label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #007254;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #005f43;
}
