body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 0;
  margin: 0;
}

.form_wrap {
  background: #ffffff;
  width: 850px;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  border-top: 6px solid #1e88e5;
  transition: all 0.3s ease;
}

.form_wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form_section {
  border: 2px solid #90caf9;
  border-radius: 12px;
  background: #f9fbff;
  padding: 30px 35px;
  margin-bottom: 30px;
}
.form_section label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form_section input,
.form_section select,
.form_section textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1.5px solid #90caf9;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

.form_section input[type="checkbox"],
.form_section input[type="radio"] {
  width: auto;
  margin-right: 8px;
  margin-bottom: 8px;
}

.section_title {
  font-size: 18px;
  font-weight: 600;
  color: #0d47a1;
  padding: 0 10px;
}

.input_box {
  margin-bottom: 18px;
}

.input_box label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.input_box input,
.input_box select,
.input_box textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.8px solid #cfd8dc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
  background-color: #fff;
}

.input_box input:focus,
.input_box select:focus,
.input_box textarea:focus {
  border-color: #1e88e5;
  box-shadow: 0 0 5px rgba(30, 136, 229, 0.3);
}

.radio_group,
.checkbox_group {
  margin: 15px 0;
}

.radio_group label,
.checkbox_group label {
  display: block;
  font-size: 14.5px;
  color: #333;
  cursor: pointer;
  margin-bottom: 6px;
}

input[type="radio"],
input[type="checkbox"] {
  accent-color: #1e88e5;
  transform: scale(1.1);
  margin-right: 6px;
}

.submit_btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background: #1e88e5;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit_btn:hover {
  background: #1565c0;
  box-shadow: 0 5px 15px rgba(21, 101, 192, 0.4);
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}

textarea {
  resize: vertical;
}
