* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f0f4f8;
  padding: 40px;
}

.container {
  max-width: 900px;
  background: #fff;
  padding: 30px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

label {
  margin-bottom: 5px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
}

textarea {
  resize: vertical;
}

.radio-group,
.checkbox-group {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.qualification-table {
  width: 100%;
  border-collapse: collapse;
}

.qualification-table th,
.qualification-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

button {
  padding: 12px 30px;
  border: none;
  background: #007bff;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0056b3;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
