/*@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=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');*/
:root {
    --primaryFont: 'Open Sans', sans-serif;
    --black: #1B1B1B;
    --color1: #E6A57E;
    --color2: #116068;
    --color3: #33929c;
}
/*@font-face {
    font-family: 'Roboto';
    src:url('../Fonts/Open_Sans/static/OpenSans-Regular.ttf') format('truetype')
}*/
*{
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--primaryFont);
    color: var(--black);
    /*font-family: 'Roboto', sans-serif;
    font-size:16px;*/
}
.loginbg {
   /* background-image: url('../images/bg2.png');*/
   /* background-image: linear-gradient(#02aab0,#00f2ce);*/
    /*background-image: linear-gradient(#2193b0,#6dd5ed);*/
    background-attachment: fixed;
    background-repeat: no-repeat;
    trnspare width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* End of Login Background image */
.card-body{
  height: fit-content;
  width: 400px;
  padding: 40px 20px 80px 20px;
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
  height: 65px;
  width: 130px;
}
.version{
    margin: 4px auto 20px auto;
    font-size: 12px;
    width: fit-content;
}
.btnPrimary{
    background-color: var(--color2);
    border: 1px solid var(--color2);
    color: white;
}
.btnPrimary:hover{
    background-color: var(--color3);
    border: 1px solid var(--color3);
    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;
    }
}
.input-group-append {
    position: relative;
}

.btn-outline-secondary {
    border: none; /* Remove border */
    background-color: transparent; /* Remove background color */
    padding: 0; /* Remove padding */
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: right 0.0s ease; /* Add transition effect */
}


#ShowPassword.active,
#ShowPassword.inactive,
#ShowRetypePassword.active,
#ShowRetypePassword.inactive {
    right: 25px;
    background-color: transparent;
    border: none;
    color: inherit;
}

.fa-eye {
    transition: transform 0.0s ease, z-index 0s; /* Add transition effect to the eye icon */
}

#ShowPassword.active .fa-eye,
#ShowRetypePassword.active .fa-eye {
    transform: translateX(-0px); /* Adjust the position when active (password is visible) */
    z-index: 1; /* Ensure the eye icon is on top when active */
    color: #007bff;
}

#ShowPassword.inactive .fa-eye,
#ShowRetypePassword.inactive .fa-eye {
    transform: translateX(-0px);
    z-index: 1;
    color: #6c757d; /* Change to the color code for the eye icon when inactive */
}

    #ShowPassword.inactive .fa-eye:hover,
    #ShowRetypePassword.inactive .fa-eye:hover {
        background-color: transparent;
        border: none;
        color: #007bff;
    }

.btn-outline-secondary:hover {
    background-color: transparent;
    border: none;
    color: #070c0c;
}

#btnQuickLogin:disabled {
    background-color: #6c757d;
    color: #fff;
}

#btnLoginForgot:disabled {
    background-color: #6c757d;
    color: #fff;
}

