/*
 *
 * Template Name: Fullscreen Login
 * Description: Login Template with Fullscreen Background Slideshow
 * Author: Anli Zaimi
 * Author URI: http://azmind.com
 *
 */


body {
  background: #f8f8f8;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  overflow-y: hidden !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a {
  color: #003f77  !important;
  display: inline-block;
  text-decoration: none !important;
  font-weight: 400;
  font-size: 18px;
}

.page-container {
  /* margin: 120px auto 0 auto; */
  background-color: rgba(0, 0, 0, 0.6);
  height: 100vh;
}

.page-container .application-name {
  color: #fff;
  padding: 15px 0 0px 15px;
  position: absolute;
  font-size: 31px;
  z-index: 9;
}
.navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
    background-color: #0a2c65;
    border-bottom: solid 1px #fdc32e;
}



/* Left - STRUCTURE */

.inner-wrapper {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  position: absolute;
  z-index: 9;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: rgba(255,255,255,0.9);
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-right: 8%;
  margin-top: -60px;
  border-bottom: solid 4px #009ff1;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #7aadcc;
  padding: 15px 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

.logo {
    width: 185px;
    margin: 0px 0 0px 0;
}

/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

.login-btn {
  /* background-color: #56baed; */
  background-color: #00aeef;
  border: none;
  color: white !important;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 50px;
  margin: 5px;
transition: all .3s ease;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
-ms-transition: all .3s ease;
}





.login-btn:hover {
    background: #1f77dd;

}

.login-btn:active {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

/* input[type=text],
input[type=password] {
  background-color: #efefef;
  border: none;
  color: #0d0d0d;
  padding: 5px 10px;
  height: 40x;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 100%;
  border: 1px solid #c1c1c1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 50px;
}

input[type=text]:focus,
input[type=password]:focus {
  background-color: #fff;
  border-bottom: 1px solid #5fbae9;
}

input[type=text]:placeholder,
input[type=password]:placeholder {
  color: #1b1b1b !important;
  font-size: 16px;
} */



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;

  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after {
  width: 100%;
}

.underlineHover {
  margin-bottom: 15px;
}


/* OTHERS */

*:focus {
  outline: none;
}

* {
  box-sizing: border-box;
}



.lams_logo {
  padding: 15px
}

.lams_logo img {
  width: 285px
}


/*------------------------------------------------------*/

.container-flex{
    background-color: #fff;
}
.digital-container{
    padding: 30px;
    position: absolute;
    z-index: 1111;
    left: 0;
    right: 0;
    background-color: #fff;

}


.curve-container{
    overflow: hidden;
    background-color: #011f3885;
    border-radius: 20px;
    width: 100%;
    height: calc(100vh - 60px);
}

.digitalsakhi-logo {
    position: absolute;
    z-index: 111;
    width: 150px;
    height: 150px;
    margin: 15px;
    background-color: #00000059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 2px #ffffff8a;
}
.digitalsakhi-logo img{
    width:94px;
}


.logo-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    width: 424px;
    height: 134px;
    padding: 12px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 16px;
    z-index: 111;
  }
.logo-box > span {
    font-size: 1.44rem;
    font-weight: 500;
    color: #ca8141;
    font-family: system-ui;
  }
.logo-box::before, .logo-box::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: inherit;
    clip-path: polygon(100% 100%, 0 100%, 0 0, 5% 30%, 30% 70%, 70% 95%);
  }
  .logo-box::before {
    bottom: 100%;
    left: -0.5px;
  }
  .logo-box::after {
    bottom: 0;
    left: calc(100% - 0.5px);
  }
  .logo-box .curve-bg{
background-image: url(../img/curve-bg.png);
width: 260px;
height: 172px;
margin-right: -89px;
position: absolute;
right: -163px;
bottom: -23px;
background-size: contain;
background-repeat: no-repeat;

}

.logo-box .client-logo-section{
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.logo-box .client-logo-section .login-client-logo{
    height: 90px;
    width: 90px;
    display: flex
;
    align-items: center;
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 11px 1px rgba(217, 217, 217, 1);
    -moz-box-shadow: 0px 0px 11px 1px rgba(217, 217, 217, 1);
    box-shadow: 0px 0px 11px 1px rgba(217, 217, 217, 1);
    margin: 6px;
    transition: 0.3s;
}
.logo-box .client-logo-section .login-client-logo:hover{
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 11px 1px rgb(196, 196, 196);
    -moz-box-shadow: 0px 0px 11px 1px rgb(197, 197, 197);
    box-shadow: 0px 0px 11px 1px rgb(197, 197, 197);
}
.logo-box .client-logo-section .login-client-logo img{
    width: 87px;
    margin: 2px;
}

  /* Floating Labels Form */
.floating-form {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: absolute;
    z-index: 11;
    right: 65px;
    top: calc(50% - 200px);
}


.floating-form p{
    font-family: emoji;
    color: #9e9e9e;
    font-size: 16px;

    letter-spacing: 0.5px;
}

.floating-form h2.loading {
    font-size: 34px;
    font-family: inherit;
    font-weight: 700;
    margin-bottom: 3px;
  }

  .floating-form h2.loading:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4,end) 1200ms infinite;
    animation: ellipsis steps(4,end) 1200ms infinite;
    content: "\2026"; /* ascii code for the ellipsis character */
    width: 0px;
  }

  @keyframes ellipsis {
    to {
      width: 1.25em;
    }
  }

  @-webkit-keyframes ellipsis {
    to {
      width: 1.25em;
    }
  }

.floating-form .input-group {
    position: relative;
    margin: 2rem 0;
    background-color: #ffffff;
}

.floating-form input {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border: 1px solid #c5c5c5;
    background: transparent;
    color: #000;
    outline: none;
    border-radius: 5px;
    background-color: #ffffff;
}



.floating-form label {
    transform: translateY(-50%);
    color: #888;
    transition: 0.3s;
    pointer-events: none;
    position: relative;
    top: 12px;
}

.floating-form input:focus ~ label,
.floating-form input:valid ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: #8B5CF6;
}

.floating-form input:focus {
    border-bottom-color: #8B5CF6;
}

.floating-form button {
    width: 100%;
    padding: 1rem;
    background: #8B5CF6;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.floating-form button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-form button:hover::after {
    width: 300px;
    height: 300px;
}
.login-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .login-buttons .login-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    gap: 13px;
    border-radius: 30px;
    margin-top: 5px;
}









  /* .login-buttons .login-button i{
    position: relative;
    transition: 0.3s;
  }
  .login-buttons .login-button:hover i.fas{
right: -5px;
transition: 0.3s;
  } */


  .login-buttons h5{
    width: 50%;
    color: #0d0d0d;
    margin-bottom: 0;
    font-size: 15px;
    text-align: end;
  }

  .privacy-text {
    position: absolute;
    z-index: 111;
    display: flex
;
    bottom: 40px;
    right: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-text p{
color: #fff;
font-size: 14px;
margin-bottom: 0;
margin-right: 5px;
}
.privacy-text a{
    margin: 0 10px;
    font-size: 14px;
    color: #fff !important;
    text-decoration: underline !important;
}


.captcha-section {
    margin-top: 8px !important;
}
.captcha-section .form-control{
    height: 44px;
}
.captcha-section .btn{
    height: 44px;
    padding: 0 14px;
    text-align: center;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    background-color: #969696;
}








