@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap");
* {
  font-size: 100%;
  font-family: "Lexend", sans-serif;
  transition: 0.5s;
}
*:hover {
  transition: 0.5s;
}

.txt-blue {
  color: #2E6FD2;
}

.p-25 {
  padding: 25px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #6D7987 #D9D9D9;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: #D9D9D9;
}

*::-webkit-scrollbar-thumb {
  background-color: #6D7987;
  border-radius: 5px;
  border: 3px solid #D9D9D9;
}

.login-contain {
  background: rgb(15, 17, 101);
  background: linear-gradient(180deg, rgb(15, 17, 101) 0%, rgb(11, 66, 108) 100%);
  height: 100vh;
  background-attachment: fixed;
}

#sidebar-wrapper {
  transition: margin 0.25s ease-out;
  background: #fff;
  position: relative;
  padding: 4%;
  border-radius: 0px 30px 30px 0px;
  box-shadow: 21px 0px 0px 0px rgba(255, 255, 255, 0.5);
  height: 100vh;
  background-attachment: fixed;
}
#sidebar-wrapper .institute-logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
#sidebar-wrapper .institute-logo h4 {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  color: #555;
  margin-left: 20px;
  font-weight: 400;
  margin-bottom: 0px;
}
#sidebar-wrapper .login-form h4 {
  color: #000;
}
#sidebar-wrapper .login-form .login-fields {
  margin-top: 24px;
}
#sidebar-wrapper .login-form .login-fields .fields-group {
  margin-bottom: 18px;
}
#sidebar-wrapper .login-form .login-fields .fields-group input {
  border-radius: 10px;
  border: 1px solid #666;
  height: 42px;
}
#sidebar-wrapper .login-form .form-accept {
  display: flex;
  justify-content: space-between;
  color: #666;
  margin-bottom: 18px;
}
#sidebar-wrapper .login-form .form-accept h6 {
  font-size: 15px;
  font-weight: 400;
}
#sidebar-wrapper .login-form .form-accept .form-check label {
  font-size: 15px;
  font-weight: 400;
}
#sidebar-wrapper .login-form .form-accept .form-check input {
  border-radius: 2px;
  border: 1px solid #666;
  width: 15px;
  height: 15px;
}
#sidebar-wrapper .login-form .login-button .signin-btn {
  background-color: #214DB5;
  border-radius: 25px;
  color: #fff;
  padding: 14px 0px;
  font-size: 15px;
}
#sidebar-wrapper .login-form .login-button .signin-btn:hover {
  background-color: #078E0D;
}
#sidebar-wrapper .login-form .login-button .register-btn {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
#sidebar-wrapper .login-form .login-button .register-btn a {
  background-color: #078E0D;
  color: #fff;
  padding: 14px 24px;
  border-radius: 25px;
  font-size: 15px;
}
#sidebar-wrapper .login-form .login-button .register-btn a:hover {
  background-color: #2E6FD2;
}

.wrapper-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.wrapper-btn .option {
  background: #fff;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 2px solid #2E6FD2;
  transition: all 0.3s ease;
  height: 72px;
  position: relative;
}
.wrapper-btn #option-1:checked:checked ~ .option-1 h6,
.wrapper-btn #option-2:checked:checked ~ .option-2 h6,
.wrapper-btn #option-3:checked:checked ~ .option-3 h6 {
  color: #fff;
}
.wrapper-btn #option-1:checked:checked ~ .option-1 span::before,
.wrapper-btn #option-2:checked:checked ~ .option-2 span::before,
.wrapper-btn #option-3:checked:checked ~ .option-3 span::before {
  color: #fff;
}
.wrapper-btn h6 {
  font-size: 14px;
  color: #2E6FD2;
  margin-left: 8px;
  margin-bottom: 0px;
}
.wrapper-btn span:before {
  color: #2E6FD2;
  font-size: 24px;
}
.wrapper-btn .dot {
  height: 16px;
  width: 16px;
  background: #fff;
  border: 1px solid #2E6FD2;
  border-radius: 50%;
  position: absolute;
  right: 8px;
  top: 8px;
}
.wrapper-btn .dot::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
.wrapper-btn input[type=radio] {
  display: none;
}
.wrapper-btn #option-1:checked:checked ~ .option-1,
.wrapper-btn #option-2:checked:checked ~ .option-2,
.wrapper-btn #option-3:checked:checked ~ .option-3 {
  border-color: #0069d9;
  background: #2E6FD2;
}
.wrapper-btn #option-1:checked:checked ~ .option-1 .dot,
.wrapper-btn #option-2:checked:checked ~ .option-2 .dot,
.wrapper-btn #option-3:checked:checked ~ .option-3 .dot {
  background: #2E6FD2;
  border: 1px solid #fff;
}
.wrapper-btn #option-1:checked:checked ~ .option-1 .dot::before,
.wrapper-btn #option-2:checked:checked ~ .option-2 .dot::before,
.wrapper-btn #option-3:checked:checked ~ .option-3 .dot::before {
  opacity: 1;
  transform: scale(1);
}

.institute-contain {
  padding: 50px 50px 50px 60px;
  height: 100vh;
}
.institute-contain .banner-img {
  width: 100%;
  border-radius: 15px;
  height: 250px;
}
.institute-contain .about-btn-contain {
  margin-top: 30px;
}
.institute-contain .about-btn-contain .institute-details {
  color: #fff;
  max-height: 244px;
  overflow-y: hidden;
}
.institute-contain .about-btn-contain .institute-details h5 {
  margin-bottom: 16px;
  font-size: 19px;
  font-weight: 500;
  line-height: 30px;
  text-align: justify;
}
.institute-contain .about-btn-contain .institute-details p {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 300;
  line-height: 30px;
  text-align: justify;
}
.institute-contain .about-btn-contain .read-more-btn {
  margin-top: 24px;
  display: flex;
}
.institute-contain .about-btn-contain .read-more-btn a {
  border-radius: 40px;
  font-size: 15px;
  padding: 12px 32px;
  background-color: #A37B16;
  border: 2px solid #A37B16;
  color: #fff;
  text-decoration: none;
}
.institute-contain .about-btn-contain .read-more-btn a:hover {
  background-color: transparent;
  color: #F4D42A;
  border-color: #F4D42A;
}
.institute-contain .about-btn-contain .institute-btns {
  display: flex;
  padding-left: 40px;
  flex-flow: column;
  row-gap: 24px;
}
.institute-contain .about-btn-contain .institute-btns a {
  width: 100%;
  color: #F4D42A;
  padding: 14px 26px;
  border: 2px solid #F4D42A;
  border-radius: 40px;
  text-align: left;
  display: flex;
}
.institute-contain .about-btn-contain .institute-btns a span {
  margin-right: 12px;
  font-size: 22px;
}
.institute-contain .about-btn-contain .institute-btns a span:hover {
  color: #fff;
}
.institute-contain .about-btn-contain .institute-btns a:hover {
  color: #fff;
  border-color: #fff;
}
.institute-contain .powered-logo {
  display: flex;
  justify-content: end;
  flex-wrap: nowrap;
  padding-top: 0px;
}
.institute-contain .powered-logo .powered-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 8px;
  margin-right: 8px;
}
.institute-contain .powered-logo .powered-details p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0px;
}

.fg-pass-main .modal-content .modal-header {
  background-color: #FDDAB4;
  padding-left: 20px;
  padding-right: 20px;
}
.fg-pass-main .modal-content .modal-header .modal-title {
  color: #000;
}
.fg-pass-main .modal-content .modal-header .btn-close {
  color: #fff;
}
.fg-pass-main .modal-content .modal-body {
  padding: 0px;
}
.fg-pass-main .modal-content .modal-body nav {
  margin: 20px 20px 20px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.fg-pass-main .modal-content .modal-body nav a {
  color: #666;
  font-size: 15px;
  border: 1px solid #e17c08;
}
.fg-pass-main .modal-content .modal-body nav a.active {
  color: #fff;
  background-color: #e17c08;
}
.fg-pass-main .modal-content .modal-body .tab-content form {
  margin: 10px 20px 30px;
}
.fg-pass-main .modal-content .modal-body .tab-content form input {
  font-size: 14px;
  border-color: #bfbfbf;
  padding-top: 12px;
  padding-bottom: 12px;
}
.fg-pass-main .modal-content .modal-body .tab-content .modal-footer button {
  font-size: 14px;
}
.fg-pass-main .modal-content .modal-body .tab-content .modal-footer button.btn-primary {
  background-color: #078E0D;
}

.modal-custom-body {
  padding: 50px;
}
.modal-custom-body .close-btn {
  position: absolute;
  right: 24px;
  top: 24px;
}
.modal-custom-body .institute-img {
  margin-bottom: 30px;
}
.modal-custom-body .institute-img img {
  width: 100%;
}
.modal-custom-body .institue-pop-details h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 24px;
}
.modal-custom-body .institue-pop-details p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.modal-custom-body .pop-title {
  display: flex;
  margin-bottom: 18px;
}
.modal-custom-body .pop-title h3 {
  color: #23577B;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
  padding-bottom: 14px;
}
.modal-custom-body .pop-title h3::after {
  height: 5px;
  width: 100px;
  content: "";
  display: block;
  background-color: #A37B16;
  position: absolute;
  bottom: 0px;
  border-radius: 15px;
}
.modal-custom-body .step-row-contain {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.modal-custom-body .step-row-contain .steps-row {
  display: flex;
  background-color: #fff;
  box-shadow: 4px 3px 5px 0px rgb(168, 168, 168);
  border-radius: 0px 100px 100px 0px;
}
.modal-custom-body .step-row-contain .steps-row .steps-count {
  display: flex;
  flex-direction: column;
  border-radius: 0px 100px 100px 0px;
  padding-right: 80px;
  padding-left: 50px;
  text-align: center;
  justify-content: center;
  background-color: #2E6FD2;
}
.modal-custom-body .step-row-contain .steps-row .steps-count.colors1 {
  background-color: #06B9BE;
}
.modal-custom-body .step-row-contain .steps-row .steps-count.colors2 {
  background-color: #A2CC38;
}
.modal-custom-body .step-row-contain .steps-row .steps-count.colors3 {
  background-color: #F76057;
}
.modal-custom-body .step-row-contain .steps-row .steps-count.colors4 {
  background-color: #F49F28;
}
.modal-custom-body .step-row-contain .steps-row .steps-count .steps-txt {
  color: #fff;
  font-size: 24px;
  font-weight: 200;
  text-transform: uppercase;
}
.modal-custom-body .step-row-contain .steps-row .steps-count .steps-no {
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  color: #fff;
}
.modal-custom-body .step-row-contain .steps-row .steps-content {
  padding-left: 30px;
  padding: 50px;
}
.modal-custom-body .step-row-contain .steps-row .steps-content h3 {
  font-weight: 600;
}
.modal-custom-body .step-row-contain .steps-row .steps-content p {
  color: #666;
}
.modal-custom-body .app-status-contain .app-input {
  border-radius: 0px;
  border: 1px solid #ccc;
  height: 50px;
}
.modal-custom-body .app-status-contain .app-button {
  background-color: #078E0D;
  color: #fff;
  padding: 14px 30px;
  border-radius: 0px;
  font-size: 15px;
  border: 0px;
  width: 50%;
}
.modal-custom-body .app-status-contain .app-button:hover {
  background-color: #2E6FD2;
}
.modal-custom-body .success-message-contain {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
.modal-custom-body .success-message-contain h5 {
  font-size: 18px;
  text-align: center;
  line-height: 28px;
  font-weight: 400;
}
.modal-custom-body .success-message-contain .yes-no-btn {
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
}
.modal-custom-body .success-message-contain .yes-no-btn a {
  padding: 5px 18px;
  font-size: 15px;
  border: 0px;
}
.modal-custom-body .success-message-contain .yes-no-btn a.btn-primary {
  background-color: #078E0D;
}
.modal-custom-body .success-message-contain .yes-no-btn a.btn-primary:hover {
  background-color: #05BE22;
}
.modal-custom-body .latest-news-contain ul li {
  list-style: none;
  display: flex;
  border-bottom: 2px solid #ccc;
  padding-bottom: 15px;
  padding-top: 15px;
}
.modal-custom-body .latest-news-contain ul li p {
  padding: 20px;
  font-size: 15px;
  text-align: justify;
  margin-bottom: 0px;
  display: flex;
  line-height: 25px;
  background-color: #ffeed4;
}
.modal-custom-body .latest-news-contain ul li:first-child {
  padding-top: 0px;
}
.modal-custom-body .latest-news-contain ul li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}
.modal-custom-body .downloads-contain {
  margin-top: 25px;
}
.modal-custom-body .downloads-contain ul li {
  list-style: none;
  display: flex;
}
.modal-custom-body .downloads-contain .downloads-btns {
  display: flex;
  flex-flow: column;
  row-gap: 22px;
}
.modal-custom-body .downloads-contain .downloads-btns a {
  width: 100%;
  color: #078E0D;
  padding: 10px 50px 10px 10px;
  border-radius: 20px;
  text-align: left;
  display: flex;
  background-color: #fff;
  box-shadow: 2px 2px 3px 0px rgb(168, 168, 168);
  border: 1px solid #dadada;
  align-items: center;
}
.modal-custom-body .downloads-contain .downloads-btns a span {
  margin-right: 15px;
  font-size: 24px;
  background-color: #078E0D;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
}
.modal-custom-body .downloads-contain .downloads-btns a:hover {
  color: #fff;
  background-color: #078E0D;
  border: 1px solid #078E0D;
}
.modal-custom-body .downloads-contain .downloads-btns a:hover span {
  background-color: #fff;
  color: #078E0D;
}

.login-small-device {
  display: none;
}

@media only screen and (max-width: 1366px) {
  .institute-contain {
    position: absolute;
    right: 0px;
    padding: 2% 2% 2% 4%;
  }
  .institute-contain .about-btn-contain .institute-details h5 {
    font-size: 18px;
    line-height: 30px;
    max-height: 244px;
    overflow-y: hidden;
  }
  .institute-contain .about-btn-contain .institute-details p {
    font-size: 14px;
    line-height: 24px;
  }
  .institute-contain .about-btn-contain .institute-btns {
    padding-left: 20px;
    row-gap: 20px;
  }
  .institute-contain .about-btn-contain .institute-btns a {
    font-size: 14px;
    padding: 12px 22px;
  }
  .institute-contain .about-btn-contain .read-more-btn a {
    border-radius: 40px;
    font-size: 15px;
    padding: 8px 24px;
    font-size: 13px;
  }
  #wrapper {
    position: relative;
    left: 0px;
  }
  #sidebar-wrapper {
    padding: 2%;
    position: fixed;
  }
  #sidebar-wrapper .form-contain {
    overflow: auto;
  }
  #sidebar-wrapper .form-contain .institute-logo {
    margin-bottom: 20px;
  }
  #sidebar-wrapper .form-contain .institute-logo h4 {
    font-size: 16px;
  }
  #sidebar-wrapper .form-contain .login-form h4 {
    font-size: 20px;
    margin-bottom: 0px;
  }
  #sidebar-wrapper .form-contain .login-form .login-fields {
    margin-top: 12px;
  }
  #sidebar-wrapper .form-contain .login-form .login-fields .fields-group {
    margin-bottom: 10px;
  }
  #sidebar-wrapper .form-contain .login-form .login-fields .fields-group label {
    font-size: 15px;
  }
  #sidebar-wrapper .form-contain .login-form .login-fields .fields-group input {
    height: 32px;
    border-radius: 5px;
  }
  #sidebar-wrapper .form-contain .login-form .login-fields .form-accept {
    margin-bottom: 10px;
  }
  #sidebar-wrapper .form-contain .login-form .login-button .signin-btn {
    padding: 10px 0px;
    border-radius: 12px;
    font-size: 14px;
  }
  #sidebar-wrapper .form-contain .login-form .login-button .register-btn {
    margin-top: 14px;
  }
  #sidebar-wrapper .form-contain .login-form .login-button .register-btn a {
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 13px;
  }
  #sidebar-wrapper .form-contain .wrapper-btn span::before {
    font-size: 18px;
  }
  #sidebar-wrapper .form-contain .wrapper-btn h6 {
    font-size: 13px;
  }
  #sidebar-wrapper .form-contain .wrapper-btn .option {
    height: 55px;
  }
  #sidebar-wrapper .form-contain .wrapper-btn .dot {
    width: 12px;
    height: 12px;
    right: 3px;
    top: 3px;
  }
  #sidebar-wrapper .form-contain .wrapper-btn .dot::before {
    width: 7px;
    height: 7px;
    top: 1.8px;
    left: 1.8px;
  }
  .pop-fullscreen {
    width: 90vw;
  }
}
@media only screen and (max-width: 768px) {
  .login-contain #sidebar-wrapper {
    position: relative;
    padding: 4%;
    border-radius: 0px;
    box-shadow: none;
    background-attachment: unset;
    background-color: #E7F2FF;
  }
  .login-contain #sidebar-wrapper .login-form .form-accept .form-check label {
    font-size: 13px;
  }
  .login-contain #sidebar-wrapper .login-form .form-accept h6 {
    font-size: 13px;
  }
  .login-contain #sidebar-wrapper .login-form .login-button .register-btn a {
    font-size: 12px !important;
  }
  .login-contain #sidebar-wrapper .login-form .login-fields .fields-group input {
    border-color: #ccc;
  }
  .login-contain #sidebar-wrapper .form-contain .wrapper-btn .dot::before {
    width: 6px;
    height: 6px;
    top: 2px;
    left: 2px;
  }
  .institute-contain {
    display: none;
  }
  .modal-custom-body {
    padding: 25px;
  }
  .modal-custom-body .pop-title {
    margin-bottom: 5px;
  }
  .modal-custom-body .pop-title h3 {
    font-size: 22px;
  }
  .modal-custom-body .institue-pop-details h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .modal-custom-body .institue-pop-details p {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .modal-custom-body .close-btn {
    top: 5px;
    right: 8px;
  }
  .modal-custom-body .close-btn img {
    width: 14px;
  }
  .modal-custom-body .step-row-contain {
    row-gap: 10px;
  }
  .modal-custom-body .step-row-contain .steps-row .steps-count {
    padding-right: 30px;
    padding-left: 30px;
    border-radius: 0px 50px 50px 0px;
  }
  .modal-custom-body .step-row-contain .steps-row .steps-count .steps-txt {
    font-size: 15px;
  }
  .modal-custom-body .step-row-contain .steps-row .steps-count .steps-no {
    font-size: 30px;
    line-height: 30px;
  }
  .modal-custom-body .step-row-contain .steps-row .steps-content {
    padding: 15px;
  }
  .modal-custom-body .step-row-contain .steps-row .steps-content h3 {
    font-size: 16px;
  }
  .modal-custom-body .step-row-contain .steps-row .steps-content p {
    margin-bottom: 0px;
  }
  .modal-custom-body .app-status-contain .app-input {
    height: 40px;
    font-size: 14px;
  }
  .modal-custom-body .app-status-contain .app-button {
    padding: 8px 10px;
  }
  .modal-custom-body .latest-news-contain ul li img {
    display: none;
  }
  .modal-custom-body .latest-news-contain ul li p {
    font-size: 12px;
    line-height: 18px;
  }
  .login-small-device {
    margin-top: 15px;
    display: block;
  }
  .login-small-device .institute-device-details h5 {
    font-size: 14px;
    line-height: 22px;
    max-height: 244px;
    overflow-y: hidden;
  }
  .login-small-device .institute-device-details .read-more-btn {
    margin-top: 12px;
    display: flex;
  }
  .login-small-device .institute-device-details .read-more-btn a {
    border-radius: 40px;
    font-size: 12px;
    padding: 6px 12px;
    background-color: #A37B16;
    border: 2px solid #A37B16;
    color: #fff;
    text-decoration: none;
  }
  .login-small-device .institute-device-details .read-more-btn a:hover {
    background-color: transparent;
    color: #F4D42A;
    border-color: #F4D42A;
  }
  .login-small-device .mobile-institute-btns {
    display: flex;
    padding-left: 0px;
    flex-flow: column;
    row-gap: 10px;
  }
  .login-small-device .mobile-institute-btns a {
    width: 100%;
    color: #fff;
    padding: 6px 12px;
    background-color: #23577B;
    border-radius: 40px;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 12px;
  }
  .login-small-device .mobile-institute-btns a span {
    margin-right: 5px;
    font-size: 12px;
  }
  .login-small-device .mobile-institute-btns a span:hover {
    color: #fff;
  }
  .login-small-device .mobile-institute-btns a:hover {
    color: #fff;
    border-color: #fff;
  }
  .header-contain header .top-head {
    padding: 10px;
  }
  .header-contain header .top-head .logo-search-contain .institute-logo h4 {
    font-size: 16px;
  }
  .header-contain header .top-head .header-powered .powered-by p {
    font-size: 12px;
    margin-right: 5px;
  }
  .header-contain header .top-head .header-powered .powered-by img {
    width: 80px;
  }
  .header-contain header .sec-header-contain .sec-header {
    padding: 8px 24px;
  }
}
@media only screen and (max-width: 810px) {
  .institute-contain {
    position: inherit;
    right: 0px;
    padding: 2% 2% 2% 4%;
    height: auto;
  }
  #sidebar-wrapper {
    position: relative;
    height: auto;
    border-radius: 0px;
  }
  .login-contain {
    height: auto;
  }
  .fixed-bottom {
    position: relative;
  }
}
@media only screen and (max-width: 1080px) {
  .institute-contain {
    position: inherit;
    right: 0px;
    padding: 2% 2% 2% 4%;
    height: auto;
  }
  #sidebar-wrapper {
    position: relative;
    height: auto;
    border-radius: 0px;
  }
  .login-contain {
    height: auto;
  }
  .fixed-bottom {
    position: relative;
  }
}/*# sourceMappingURL=login.css.map */