/* Google Fonts Import Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #A771F7;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8b4fe5;
}

.nav_stick {
  position: fixed;
  top: 0;
}

.wrapper {
  display: flex;
  min-height: 100%;
}

.sidebar {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  width: 260px;
  background: #FFFFFF;
  box-shadow: 1.50417px 0 6.01667px rgba(59, 124, 255, 0.1);
  background-size: cover;
  z-index: 100;
  transition: all .5s ease;
}

.sidebar.close {
  width: 78px;
}

.sidebar .logo-details {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
}

.sidebar .logo-details i {
  font-size: 30px;
  color: #384455;
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
}

.sidebar .logo-details .logo_name {
  font-size: 22px;
  color: #384455;
  font-weight: 600;
  transition: .3s ease;
  transition-delay: .1s;
  white-space: nowrap;
}

.sidebar.close .logo-details .logo_name {
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}

.sidebar .nav-links {
  height: 100%;
  padding: 30px 0 100px;
  overflow: auto;
}

.sidebar .nav-links .active {
  background: linear-gradient(92.81deg, #A771F7 20.07%, #7E72F7 78.67%);
  color: #fff !important;
  border-radius: 10px;
}

.sidebar .nav-links .active i {
  color: #fff !important;
}

.sidebar .nav-links .active .link_name {
  color: #fff !important;
}

.sidebar.close .nav-links {
  overflow: visible;
}

.sidebar .nav-links::-webkit-scrollbar {
  display: none;
}

.sidebar .nav-links li {
  position: relative;
  list-style: none;
  transition: all .4s ease;
  margin: 3px 10px;
}

.sidebar .nav-links li:hover {
  border-radius: 10px;
}

.icon-link:hover {
  border-radius: 10px;
}

.sidebar .nav-links li .icon-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
}

.sidebar.close .nav-links li .icon-link {
  display: block;
  border-radius: 10px;
}

.sidebar .nav-links li i {
  height: 50px;
  min-width: 55px;
  text-align: center;
  line-height: 50px;
  color: #384455;
  font-size: 20px;
  cursor: pointer;
  transition: all .3s ease;
}

.nav-links li {
  border-radius: 10px;
  background-color: #fff;
}

.sidebar .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
}

.sidebar.close .nav-links i.arrow {
  display: none;
}

.sidebar .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sidebar .nav-links li a .link_name {
  font-size: 15px;
  font-weight: 400;
  color: #384455;
  transition: all .4s ease;
}

.sidebar.close .nav-links li a .link_name {
  opacity: 0;
  pointer-events: none;
}

.sidebar .nav-links li .sub-menu {
  padding: 6px;
  background: #fff;
  display: none;
}

.sidebar .nav-links li.showMenu .sub-menu {
  display: block;
}

.sidebar .nav-links li .sub-menu a {
  color: #384455;
  font-size: 13px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: .6;
  transition: all .3s ease;
  font-weight: 500;
}

.sidebar .nav-links li .sub-menu a:hover {
  opacity: 1;
  color: #9172F8;
  font-size: 600;
}

.a_active {
  color: #9172F8 !important;
  opacity: 1 !important;
}

.sidebar.close .nav-links li .sub-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 20px;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
  border-radius: 10px;
}

.sidebar.close .nav-links li:hover .sub-menu {
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all .4s ease;
}

.sidebar .nav-links li .sub-menu .link_name {
  display: none;
}

.sidebar.close .nav-links li .sub-menu .link_name {
  font-size: 15px;
  opacity: 1;
  display: block;
}

.sidebar .nav-links li .sub-menu.blank {
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}

.sidebar .nav-links li:hover .sub-menu.blank {
  top: 50%;
  transform: translateY(-50%);
}

.tree_view .sub-menu li {
  padding-left: 1em;
  border: 2px solid #DEE5E8;
  border-width: 0 0 2px 2px;
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-top: -2px;
}

.tree_view .sub-menu li p {
  margin: 0;
  background: white !important;
  position: relative;
  z-index: 10;
  top: 1em;
  padding-left: 5px;
}

.tree_view .sub-menu li p .tree_brdr {
  border-left: 2px solid #DEE5E8;
  margin-left: -23px;
}

.tree_view .sub-menu li p .tree_padd {
  padding-left: 20px;
}

.sidebar .profile-details {
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1b31;
  padding: 12px 0;
  transition: all .5s ease;
}

.sidebar.close .profile-details {
  background: none;
}

.sidebar.close .profile-details {
  width: 78px;
}

.sidebar .profile-details .profile-content {
  display: flex;
  align-items: center;
}

.sidebar .profile-details img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all .5s ease;
}

.sidebar.close .profile-details img {
  padding: 10px;
}

.sidebar .profile-details .job,
.sidebar .profile-details .profile_name {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.sidebar.close .profile-details .job,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details i {
  display: none;
}

.sidebar .profile-details .job {
  font-size: 12px;
}

.home-section {
  position: relative;
  background: #F9FAFC;
  min-height: 100%;
  left: 0;
  width: calc(100% - 260px);
  /*overflow-y: auto;*/
  transition: all .5s ease;
  height: 100vh;
}

.sidebar.close~.home-section {
  left: 0;
  width: calc(100% - 78px);
}

.home-section .home-content {
  height: 60px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
}

.home-section .home-content .bx-menu,
.home-section .home-content .text {
  color: #11101d;
  font-size: 35px;
}

.home-section .home-content .bx-menu {
  margin: 0 15px;
  cursor: pointer;
}

.home-section .home-content .text {
  font-size: 26px;
  font-weight: 600;
}

@media (max-width: 400px) {
  .sidebar.close.small-screen {
    width: 0;
  }

  .sidebar.close.small-screen~.home-section {
    width: 100%;
    left: 0;
    z-index: 100;
  }
}

.navbar {
  box-shadow: 1.50417px 0 6.01667px rgba(59, 124, 255, 0.1);
}

.search input[type="text"] {
  width: 100%;
  border: 1px solid #EEF1F3;
  background-color: #EEF1F3;
  border-radius: 15px;
  margin: 8px 0;
  outline: none;
  padding: 3px;
  box-sizing: border-box;
  transition: .3s;
}

.search input[type="text"]:focus {
  border-color: #EEF1F3;
  box-shadow: none !important;
}

.search .inputWithIcon input[type="text"] {
  padding-left: 40px;
}

.search .inputWithIcon {
  position: relative;
  margin-left: 50px;
}

.search .inputWithIcon i {
  position: absolute;
  left: 0;
  top: 4px;
  padding: 9px 8px;
  color: #aaa;
  transition: .3s;
  cursor: pointer;
}

.search .inputWithIcon input[type="text"]:focus+i {
  color: dodgerBlue;
}

.search .inputWithIcon.inputIconBg i {
  background-color: #aaa;
  color: #fff;
  padding: 9px 4px;
  border-radius: 4px 0 0 4px;
}

.search .inputWithIcon.inputIconBg input[type="text"]:focus+i {
  color: #fff;
  background-color: dodgerBlue;
}

.logo-details {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
}

.fs_20 {
  font-size: 20px;
  color: #EEF1F3;
}

/*Mobile*/
@media only screen and (max-width: 480px) {
  .logo-details .logo_name {
    display: none;
  }

  .dp_nav_name {
    display: none;
  }

  .main_content_m70 {
    margin-top: 70px;
    padding: 10px;
  }

  .inputWithIcon {
    display: none;
  }
}

/*Tablet*/
@media only screen and (min-width: 768px) {
  .logo-details .logo_name {
    font-size: 22px;
    color: #384455;
    font-weight: 600;
    transition: .3s ease;
    transition-delay: .1s;
    white-space: nowrap;
  }

  .main_content_m70 {
    margin-top: 70px;
    padding: 15px;
  }
}

/*Desktop*/
@media only screen and (min-width: 992px) {
  .logo-details .logo_name {
    font-size: 22px;
    color: #384455;
    font-weight: 600;
    transition: .3s ease;
    transition-delay: .1s;
    white-space: nowrap;
  }

  .main_content_m70 {
    margin-top: 70px;
    padding: 15px 30px;
  }
}

/*Huge*/
@media only screen and (min-width: 1280px) {
  .logo-details .logo_name {
    font-size: 22px;
    color: #384455;
    font-weight: 600;
    transition: .3s ease;
    transition-delay: .1s;
    white-space: nowrap;
  }

  .main_content_m70 {
    margin-top: 70px;
    padding: 15px 30px;
  }
}

.dp_nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px 0 5px;
}

.mark_entry_table {
  overflow-y: auto;
}

.mark_entry_table th {
  background: linear-gradient(180deg, #7F73F8 0%, #A073F9 100%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
  padding: 10px;
  color: #fff;
  font-weight: 400;
}

.mark_entry_table td {
  background: #FFFFFF;
  padding: 8px;
}

.mark_entry_table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.mark_entry_table th:first-child {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.mark_entry_table th:last-child {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

.mark_entry_table td:first-child {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.mark_entry_table td:last-child {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

/*---modal table----*/
.semester_td_main,
.s1_td_bg,
.s2_td_bg,
.s3_td_bg,
.s4_td_bg,
.s5_td_bg,
.s6_td_bg,
.s7_td_bg,
.s8_td_bg {
  border-radius: 6px;
  height: 50px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
}

.s1_td_bg {
  background: rgba(33, 126, 253, 0.298039);
  color: #217EFD;
}

.s2_td_bg {
  background: #FFE9C3;
  color: #FFB536;
}

.s3_td_bg {
  background: #F4CEFA;
  color: #DC62EF;
}

.s4_td_bg {
  background: #AAFFFE;
  color: #1ABFBE;
}

.s5_td_bg {
  background: rgba(249, 242, 95, 0.298039);
  color: #D6CF43;
}

.s6_td_bg {
  background: #AAFFE3;
  color: #2BC090;
}

.s7_td_bg {
  background: rgba(255, 134, 170, 0.298039);
  color: #FF6594;
}

.s8_td_bg {
  background: #DCCEFB;
  color: #895BF1;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  font-weight: 500 !important;
  font-size: 15px !important;
  text-align: center;
  color: #753CEF !important;
  background: linear-gradient(180.38deg, #FFFFFF 0.33%, #F8F9FF 99.67%) !important;
  border: 1px solid #DED4FE;
  box-shadow: 0 10px 20px -9px rgba(50, 77, 171, 0.25) !important;
  border-radius: 10px !important;
}

.nav-link {
  display: block;
  font-weight: 500 !important;
  font-size: 15px !important;
  margin-right: 10px;
  margin-bottom: 5px;
  text-align: center;
  color: #B4BCC9 !important;
  background: linear-gradient(180.38deg, #FFFFFF 0.33%, #F8F9FF 99.67%) !important;
  box-shadow: 0 10px 20px -9px rgba(50, 77, 171, 0.25) !important;
  border-radius: 10px !important;
  text-decoration: none;
  border: 1px solid #F8F9FF;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav-item button:focus {
  outline: 0 !important;
}

.page_header_txt {
  font-weight: 500;
  font-size: 24px;
  color: #06152B;
  margin-bottom: 20px;
}

.main_btn,
.add_main_btn,
.add_classic_btn,
.go_btn {
  border: none;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.add_main_btn {
  border-radius: 50px;
  color: white;
  background: linear-gradient(180deg, #7F73F8 0%, #A872F8 100%);
}

.add_classic_btn {
  border-radius: 6px;
  white-space: nowrap;
  color: white;
  background: linear-gradient(180deg, #7F73F8 0%, #A872F8 100%);
}

.go_btn {
  background: linear-gradient(180.38deg, #FFFFFF 0.33%, #F8F9FF 99.67%);
  border: 1px solid #DED4FE;
  box-shadow: 0 10px 20px -9px rgba(50, 77, 171, 0.25);
  border-radius: 10px;
  padding: .375rem 2.25rem !important;
  color: #753CEF;
  width: 100%;
}

.mb_10 {
  margin-bottom: 10px;
}

.sub_name {
  font-weight: 500;
  font-size: 16px;
  color: #06152B;
}

.sub_code {
  font-weight: 600;
  font-size: 16px;
  color: #8372F8;
}

.inactive_btn {
  background: #FBD8D8;
  border-radius: 20px;
  display: inline-block;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: #EC4E50;
  padding: 6px 10px;
}

.active_btn {
  background: #BBF3E0;
  border-radius: 20px;
  display: inline-block;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: #1AD598;
  padding: 6px 10px;
}

.fs_28_i {
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: #f9fafc !important;
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: none !important;
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: none !important;
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
  color: #12175E !important;
}

select:focus {
  box-shadow: none !important;
}

input:focus {
  box-shadow: none !important;
}

option:hover {
  background-color: #8372F8 !important;
}

.modal-body label {
  font-weight: 400;
  font-size: 16px;
  color: #12175E;
  margin-bottom: 5px;
}

label {
  font-weight: 400;
  font-size: 16px;
  color: #12175E;
  margin-bottom: 5px;
}

.chip_main,
.chip1,
.chip2,
.chip3,
.chip4,
.chip5,
.chip6 {
  display: inline-block;
  padding: 3px 15px;
  font-size: 14px;
  border-radius: 25px;
  margin-bottom: 5px;
}

.closebtn_main,
.closebtn1,
.closebtn2,
.closebtn3,
.closebtn4,
.closebtn5,
.closebtn6 {
  padding-left: 10px;
  float: right;
  font-size: 26px;
  font-weight: 400;
  cursor: pointer;
}

.chip1 {
  color: #E25050;
  background-color: #FBD8D8;
}

.closebtn1 {
  color: #E25050;
}

.chip2 {
  color: #467D9F;
  background-color: #BEE6FF;
}

.closebtn2 {
  color: #467D9F;
}

.chip3 {
  color: #2FA67D;
  background-color: #BBF3E0;
}

.closebtn3 {
  color: #2FA67D;
}

.chip4 {
  color: #429FA6;
  background-color: #A4F9FF;
}

.closebtn4 {
  color: #429FA6;
}

.chip5 {
  color: #BF55D0;
  background-color: #F4CEFA;
}

.closebtn5 {
  color: #BF55D0;
}

.chip6 {
  color: #908E5E;
  background-color: #F9F25F;
}

.closebtn6 {
  color: #908E5E;
}

.not_mapped_txt {
  font-weight: 500;
  text-align: center;
  font-size: 18px;
  color: #BCB3E0;
}

.adding_exam_mark_bg {
  background: #FFFFFF;
  box-shadow: 0 2.66667px 5.33333px #D3DFF7;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
}

.add_exam_sub_1 {
  color: #A474FA;
  font-size: 14px;
  font-weight: 400;
}

.add_exam_sub_2 {
  color: #12175E;
  font-size: 14px;
  font-weight: 500;
}

.std_det_sub1 {
  font-weight: 500;
  font-size: 16px;
  color: #06152B;
  padding-left: 8px;
}

.std_det_sub2 {
  font-weight: 500;
  font-size: 16px;
  color: #B1A3FD;
  padding-left: 8px;
}

.std_det_dp {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.mark_pass {
  font-weight: 500;
  font-size: 16px;
  color: #12175D;
}

.mark_fail {
  font-weight: 500;
  font-size: 16px;
  color: #F72557;
}

.attendance_pass {
  font-weight: 500;
  font-size: 16px;
  color: #1AD598;
}

.attendance_fail {
  font-weight: 500;
  font-size: 16px;
  color: #F61E52;
}

#login_forget_page {
  /*---------Input Checkbox------------*/
}

#login_forget_page .login_bg {
  background: url("../images/login.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 500px;
}

#login_forget_page .login_bg_clr {
  background: radial-gradient(63.91% 56.66% at 50.13% 49.87%, #D0EAF4 0%, #CEE9F4 52%, #C7E6F4 70%, #BCE1F3 83%, #B8E0F3 86%, #A5D8F2 98%);
  height: 100vh;
}

#login_forget_page .login_txt {
  font-weight: 700;
  font-size: 60px;
  line-height: 80px;
  color: #FFFFFF;
  padding: 50px;
}

#login_forget_page .signin_google {
  background: linear-gradient(90deg, #F9B035 0%, #F98C4E 53%, #F96767 100%);
  box-shadow: 3.994px 22.651px 57px rgba(249, 103, 103, 0.259);
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 10px 40px;
  border: none;
  text-align: center;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 10px;
  width: 100%;
}

#login_forget_page .signin_btn {
  background: linear-gradient(90deg, #AE6EF4 0%, #9A6EF4 47%, #6973F6 100%);
  box-shadow: 3.994px 22.651px 57px rgba(97, 73, 205, 0.259);
  font-weight: 800;
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 10px 40px;
  border: none;
  text-align: center;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 10px;
  width: 100%;
}

#login_forget_page .signin1_txt {
  font-weight: 800;
  font-size: 30px;
  color: #000000;
  margin-bottom: 20px;
}

#login_forget_page .signin2_txt {
  font-weight: 600;
  font-size: 14px;
  color: #7A86A1;
  margin-bottom: 30px;
}

#login_forget_page .right-inner-addon {
  position: relative;
}

#login_forget_page .right-inner-addon input {
  padding-right: 45px !important;
}

#login_forget_page .right-inner-addon i {
  position: absolute;
  right: 0px;
  padding: 12px 12px;
  pointer-events: none;
}

#login_forget_page .form-control1 {
  border: 1px solid #EBEBEB;
  padding: 10px;
  width: 100%;
  border-radius: 0 !important;
  color: #3D467B !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  border-radius: 20px !important;
}

#login_forget_page .form-control1 input:focus {
  border: 1px solid #EBEBEB !important;
  outline: none !important;
}

#login_forget_page .e_mail {
  font-weight: 700;
  font-size: 15px;
  color: #000000;
}

#login_forget_page .forgot_pwd {
  font-weight: 600;
  font-size: 12px;
  color: #6149CD;
  cursor: pointer;
}

#login_forget_page .container_cb {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  user-select: none;
}

#login_forget_page .container_cb input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#login_forget_page .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border-radius: 3px;
  background-color: #eee;
}

#login_forget_page .container_cb:hover input~.checkmark {
  background-color: #ccc;
}

#login_forget_page .container_cb input:checked~.checkmark {
  background-color: #739AFE;
}

#login_forget_page .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

#login_forget_page .container_cb input:checked~.checkmark:after {
  display: block;
}

#login_forget_page .container_cb .checkmark:after {
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#login_forget_page .mb-6 {
  margin-bottom: 6px !important;
}

#login_forget_page #check_box input[type="checkbox"]:not(:checked),
#login_forget_page #check_box input[type="checkbox"]:checked {
  position: absolute;
  left: -9999%;
}

#login_forget_page #check_box input[type="checkbox"]+label {
  display: inline-block;
  padding-top: 4px;
  text-align: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  margin-right: 10px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #3d467b;
  color: #3d467b;
  background-color: white;
  margin-bottom: 10px;
}

#login_forget_page #check_box input[type="checkbox"]:checked+label {
  border: 1px solid white;
  color: white;
  background-color: #5CBEFF;
}

#login_forget_page .center_align {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#login_forget_page .mb-10 {
  margin-bottom: 10px;
}

#login_forget_page .mb_25 {
  margin-bottom: 25px;
}

#login_forget_page a {
  text-decoration: none !important;
  color: #6149CD;
}