body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #d0eaff, #e6ffe6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.form-container {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 600px;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #0077cc;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="file"],
input[list],
select,
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 15px;
}

.radio-group,
.checkbox-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 5px;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 5px;
}

textarea {
  resize: vertical;
}

button {
  width: 100%;
  padding: 14px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  margin-top: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #005fa3;
}
