/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f8fc;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

/* Form Container */
.form-wrapper {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
  margin-bottom: 25px;
  text-align: center;
  color: #003366;
}

/* Form Styles */
.insurance-form .form-group {
  margin-bottom: 20px;
}

.insurance-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.insurance-form input,
.insurance-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.insurance-form input:focus,
.insurance-form select:focus {
  outline: none;
  border-color: #007BFF;
}

/* Submit Button */
.insurance-form button {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.insurance-form button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 600px) {
  .form-wrapper {
    padding: 20px;
  }
}