.create_student {
  width: 75%;
  /* padding: 40px 20px; */
  background: #f5f7fb;
  margin: auto;
}

.create_student .student_card {
  max-width: 1300px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  padding: 20px 30px 40px;
}

.create_student .student_card h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1b2d48;
}

.create_student .divider {
  height: 1px;
  background: #dfe3e8;
  margin: 20px 0px;
}

.create_student .student_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.create_student .student_form {
  flex: 1;
}

.create_student .student_image {
  display: flex;
  justify-content: center;
  max-width: 400px;
}

.create_student .student_image img {
  width: 100%;
  height: 100%;
}

.create_student .form_group {
  margin-bottom: 28px;
}

.create_student .form_group label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

/* .create_student .form_group span {
  color: #ff3b30;
} */

/* .form_group select,
.form_group input {
    width: 100%;
    max-width: 520px;
    height: 52px;
    border: 1px solid #d7dce3;
    border-radius: 8px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    transition: .3s;
    background: #fff;
} */

.create_student .form_group select:focus,
.create_student .form_group input:focus {
  border-color: #0d88d8;
  box-shadow: none !important;
}

.create_student .button_group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

@media (min-width: 576px) and (max-width: 1199px) {
  .create_student .student_image {
    display: block;
    width: 300px;
  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .create_student .student_wrapper {
    flex-direction: column;
  }

  .create_student .student_form {
    width: 100%;
  }

  .create_student .student_image {
    order: -1;
    max-width: 300px;
  }

  .create_student .student_card h2 {
    font-size: 25px;
  }

  .create_student .form_group select,
  .create_student .form_group input {
    max-width: 100%;
  }
}

@media (min-width: 0px) and (max-width: 576px) {
  .create_student {
    /* padding: 20px 12px; */
  }

  .create_student .student_wrapper {
    flex-direction: column;
  }

  .create_student .student_card {
    padding: 10px;
  }

  .create_student .divider {
    margin: 20px 0px;
  }

  .create_student .button_group {
    flex-direction: row;
    justify-content: center;
    margin: 20px 0;
  }

  .create_student {
    width: 100%;
  }

  .create_student .student_card h2 {
    font-size: 18px;
  }

  .create_student .student_image {
    order: -1;
    max-width: 300px;
  }

  .create_student .student_form {
    width: 100%;
  }
}
