.student_type_modal .modal-content {
  border: none;
  border-radius: 10px;
  padding: 18px;
}

.student_type_modal .modal-body {
  position: relative;
  padding: 10px;
}
.student_type_modal .close_btn {
  position: absolute;
  top: 3px;
  right: -4px;
  border: none;
  background: transparent;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
}

.student_type_modal h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 7px;
}

.student_type_modal p {
  color: #7b8595;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 27px;
}
.student_type_modal .student_option {
  display: flex;
  gap: 12px;
  margin-bottom: 55px;
}
.student_type_modal .student_option button {
  border: 1px solid #d6dce5;
  background: #fff;
  padding: 6px 16px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}
.student_type_modal .student_option button.active {
  background: #5b7df0;
  color: #fff;
  border-color: #5b7df0;
  box-shadow: 0 8px 18px rgba(91, 125, 240, 0.3);
}
.student_type_modal .modal_footer_btn {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
@media (min-width: 0px) and (max-width: 991.98px) {
  .student_type_modal h3 {
    font-size: 19px;
  }
  .student_type_modal p {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .student_type_modal .student_option button {
    font-size: 14px;
  }
  .student_type_modal .student_option {
    margin-bottom: 35px;
  }
}
