:root {
  --header-height: 3rem;
  --nav-width: 68px;
  --first-color: #005086;
  --first-color-light: #AFA5D9;
  --white-color: #F7F6FB;
  --body-font: 'Nunito', sans-serif;
  --normal-font-size: 1rem;
  --z-fixed: 100
}

*,
::before,
::after {
  box-sizing: border-box
}

body {
  position: relative;
  margin: var(--header-height) 0 0 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: .5s;
  background: no-repeat;
  background-image: url(../images/login_page_front.jpg);
  background-size: cover;
}

a {
  text-decoration: none
}
.modal-backdrop.show {
     opacity: .0;
}

.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background-color: #fff;
  z-index: var(--z-fixed);
  transition: .5s
}
.header-login{
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background-color: #fff;
  z-index: var(--z-fixed);
  transition: .5s;
  background-color: aliceblue;
}

.header_toggle {
  color: #005086;
  font-size: 1.5rem;
  cursor: pointer
}

/* .header_img {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden
} */

.header_img img {
  
  margin-left:-90px ;
  /* height: 40px; */
}

.l-navbar {
  position: fixed;
  top: 0;
  left: -30%;
  width: var(--nav-width);
  height: 100vh;
  background-color: var(--first-color);
  padding: .5rem 1rem 0 0;
  transition: .5s;
  z-index: var(--z-fixed)
}

.nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden
}

.nav_logo,
.nav_link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 1rem;
  padding: .5rem 0 .5rem 1.5rem
}

.nav_logo {
  margin-bottom: 2rem
}

.nav_logo-icon {
  font-size: 1.25rem;
  color: var(--white-color)
}

.nav_logo-name {
  color: var(--white-color);
  font-weight: 700
}

.nav_link {
  position: relative;
  color: silver;
  margin-bottom: 1.5rem;
  transition: .3s
}

.nav_link:hover {
  color: var(--white-color)
}

.nav_icon {
  font-size: 1.25rem
}

.show {
  left: 0
}

.body-pd {
  padding-left: calc(var(--nav-width) + 1rem)
}

.active {
  color: var(--white-color)
}

.active::before {
  content: '';
  position: absolute;
  left: 0;
  width: 2px;
  height: 32px;
  background-color: var(--white-color)
}

.height-100 {
  height: 100vh
}
@media only screen and (min-width:910px){  
  .col-md-8 img{
      margin-right: 475px ;
  }
}

@media screen and (min-width: 768px) {
 
  .header {
      height: calc(var(--header-height) + 1rem);
      padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
  }

  /* .header_img {
      width: 40px;
      height: 40px
  } */

  /* .header_img img {
      width: 45px
  } */

  .l-navbar {
      left: 0;
      padding: 1rem 1rem 0 0
  }

  
  .body-pd {
      padding-left: calc(var(--nav-width) + 188px)
  }
 
}
@media only screen and (max-width: 600px) {
     .col-md-8 img{
         width: 100%;
     }
     .header_img img{
         margin-left: -30px;
     }
      }
/* end */
/* begin::Login-dropdown */
.mr-10{
    margin-right: 130px;
    margin-top: 18px;
}
.login{
  color: #5572a9;
  font-weight: 800;
}

.btn-color{
    color: #fff;
    background-color: #5572a9;
}
.slideImage{
    width: 100%;
}

.clear {
  clear: both;
}
.log {
  width: 400px;
  margin: 5% auto;
  background-color: #FFF;
  /* padding: 30px 0; */
}
.log h2 {
  text-align: center;
  color: #334465;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 50px;
}
.log .input-cont {
  position: relative;
  margin: 0 50px 25px;
}
.log .input-cont:last-of-type {
  margin-bottom: 30px;
}
.log .input-cont input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 40px;
  outline: none;
  color: #212121;
  font-size: 22px;
  font-weight: 400;
  background: none;
  border: none;
}

.log .input-cont input:focus {
  outline: none;
}
.log .input-cont label {
  position: absolute;
  color: #948c8c;
  top: 0;
  left: 0;
  line-height: 40px;
  -webkit-transition: .3s;
  -moz-transition: .3s;
    -o-transition: .3s;
       transition: .3s;
}
.log .input-cont input:focus + label {
  margin-top: -30px;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
  color: #bdbdbd;
}
.log .input-cont label i{
    margin-left: 200px;
}
.log .border1,
.log .border2 {
  position: absolute;
  height: 1px;
  background-color: #9E9E9E;
  left: 0;
  bottom: 0;
  width: 100%;
}
.log .border1::after,
.log .border1::before,
.log .border2::after,
.log .border2::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
    -o-transition: .5s;
       transition: .5s;
}
.log .border1::after,
.log .border2::after {
  
  right: 50%;
  background-color: #334465;
}
.log .border1::before,
.log .border2::before {
  left: 50%;
  background-color: #ed2553;
}
.log .input-cont input:focus ~ .border1::after,
.log .input-cont input:focus ~ .border1::before,
.log .input-cont input:focus ~ .border2::after,
.log .input-cont input:focus ~ .border2::before {
  width: 50%;
}
.log .check,
.log a {
  float: left;
  width: calc(50% - 50px);
  display: block;
  font-size: 12px;
  margin-bottom: 30px;
}
.log .check {
  margin-left: 50px;
}
.log a {
  text-align: right;
  text-decoration: none;
  color: #ed2553;
}
.log a:hover {
  text-decoration: underline;
  color: #F00;
}
.log form input[type="submit"] {
  display: block;
  margin: 0 auto 20px;
  border: 2px solid transparent; 
  padding: 5px 20px;
  font-size: 22px;
  cursor: pointer;
  background-color: #334465;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
    -o-transition: .5s;
       transition: .5s;
}
.log form input[type="submit"]:focus {
  outline: none; 
}
.log form input[type="submit"]:hover {
  border: 2px solid #ed2553; 
}



/* end::Login-dropdown */
/* Begin::Login */
.login-section{
  /* margin-top: 120px; */
}
.login-content {
  /* max-width: 400px; */
    width: 100%;
    /* height: 462px; */
    z-index: 1;
    /* position: absolute; */
    /* top: 50%;
    left: 50%;
    margin-left: -200px;
  margin-top: -195px; */
  border-radius: 8px;
}

.logo {
  width: 128px;
  height: 128px;
  margin: 5px;
}

.text-logo {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
}

.form-control {
  /* width: 18rem; */
  height: 3rem;
  /* left: 40px; */
  position: relative;
  border-radius: 5px;
  background-color: #eaf7ff;
}
.btn-otp {
  font-size: 14px;
  background-color: #0278ae;
  border: none;
  width: 7rem;
  height: 2rem;
  border-radius: 5px;
}

.btn {
  font-size: 14px;
  background-color: #0278ae;
  border: none;
  width: 4rem;
  height: 2rem;
  border-radius: 5px;
}

.btn:hover {
  background-color: blue;
}


.forgot {
  position: relative;
  right: -20%;
}

.forgot a {
  text-decoration: none;
  font-size: 14px;
  color: rgb(158, 163, 240);
}
.login-img{
  width: 100%;
}

/* @media (max-width:767px){
.login-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
} */
/* end::Login */