/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --primaryFont: 'Poppins', sans-serif;
    --black: #1B1B1B;
    --color1: #E6A57E;
    /*--color2: #116068;*/
    --color2: #164061;
    --color3: #33929c;
}
*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: var(--primaryFont);
    color: var(--black);
}
/*.loginbg {
    background-image: url('../Images/Login_bravo');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}*/
/*.loginbg1 {
    background-image: url('../Images/Login_bravo');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}*/
.loginbg3 {
    background-image: url(../Images/Login_bravo.jpg) !important;
     background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: right;
}
/* End of Login Background image */
.card-body{
  height: fit-content;
  width: 500px;
  padding: 50px 20px;
  
  /*padding: 40px 20px 80px 20px;*/
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
  height: 65px;
  width: 130px;
}
.version{
    margin: 4px auto 50px auto;
    font-size: 12px;
    width: fit-content;
}
.btnPrimary {
    /* background-color: var(--color2);
    border: 1px solid var(--color2);*/
    background-color: #164061;
    border: 1px solid #164061;
    color: white;
}
    .btnPrimary:hover {
        /*    background-color: var(--color3);
    border: 1px solid var(--color3);*/
        background-color: #2e6794;
        border: 1px solid #2e6794;
        color: white;
    }

/* loader */
#imgloading{
  margin: -20px auto -20px auto;
}
 .loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 1.6em;
  height: 1.6em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: var(--color2);
  font-size: 10px;
  margin: -20px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
/* End of loader */

.copyright{
  font-size: 15px;
  font-style: italic;
  font-family: 'Spectral', serif;
  font-weight: 500;
  color: var(--color2);
}

/* Timeout */
a {
    text-decoration: none;
}

.session h5 {
    color: var(--color2);
    font-weight: 800;
    font-size: 30px;
}



  /* Responsive */
@media only screen and (max-width: 768px){
    .loginbg{
        overflow: hidden;
    }
    .version{
        right: 1.4rem;
    }
    .logo-img{
        height: 3.5rem;
        width: 18rem;
    }
}