
/* BASIC */

html {
    background-color: #fff;
  }

  body {
    font-family: "Poppins", sans-serif;
  }
  
  a {
    color: #92badd;
    display:inline-block;
    text-decoration: none;
    font-weight: 400;
  }
  
  h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display:inline-block;
    margin: 40px 8px 10px 8px; 
    color: #cccccc;
  }
  
  
  
  /* STRUCTURE */
  
  .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
  }
  
#formContent {
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #fff;
    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.3);
    text-align: center;
    padding-top: 0px;
    background:rgba(255, 255, 255, 0.5);
}

  #formFooter {
    padding: 15px;
    text-align: center;
    -webkit-border-radius: 0;
    border-radius: 0;
    float:left;
    width:100%;
  }
  
  
  
  /* TABS */
  
  h2.inactive {
    color: #cccccc;
  }
  
  h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
  }
  
  
  
  /* FORM TYPOGRAPHY*/
  
input[type=submit], input[type=reset] {
    background-color: #124191;
    border: none;
    color: white;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow:none;
    /* -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px; */
    margin: 5px 20px 20px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
    width:100%;
}

input[type=button] {
    background-color: #124191;
    border: none;
    color: white;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    /* margin: 5px 20px 0px 20px; */
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
  
  input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
    background-color: #124191;
  }
  
  input[type=button]:active, input[type=submit]:active, input[type=reset]: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] {
    /* background-color: #ccc; */
    /* border: none; */
    /* color: #3a72d0; */
    padding: 10px 0px ;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 5px;
    width: 65%;
    border: 1px solid #124191;
    background: rgba(168, 209, 230, 0.3);
    -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: 5px 5px 5px 5px;
}
  .NewLoginInfo .input-sm {
    background: rgba(255, 255, 255, .4) !important;
}
  input[type=text]:focus {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
  }
  
  input[type=text]:placeholder {
    color: #cccccc;
  }
input[type=password] {
    /* background-color: #ccc; */
    /* border: none; */
    /* color: #3a72d0; */
    padding: 10px 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 5px;
    width: 65%;
    border: 1px solid #124191;
    background: rgba(168, 209, 230, 0.3);
    -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: 5px 5px 5px 5px;
}
  
  input[type=password]:focus {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
  }
  
  input[type=password]:placeholder {
    color: #cccccc;
  }
  
  
  /* 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;
    margin: 50px 50px 30px 50px;
  }
  
  .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: #124191;
    content: "";
    transition: width 0.2s;
  }
  
  .underlineHover:hover {
    color: #0d0d0d;
  }
  
  .underlineHover:hover:after{
    width: 100%;
  }
  
  
  
  /* OTHERS */
  
  *:focus {
      outline: none;
  } 
  
  #icon {
    width:60%;
  }
  
  ::placeholder {
    color: #333;
    opacity: 1; /* Firefox */
}
  


.clippy, .clippy-balloon{
  display: none !important;
}

.login-content p{
  color: #eee;
}
.login-content p a{
  color: #a2aeca !important;
}
.login-content p a:hover{
  text-decoration: underline;
}

.modal-title{
  font-size: 18px;
  font-weight: 500;
  color: #124191;
  margin: 0px;
}
.modal-content{
  border-radius: 0px;
  border-color: #999;
}
.NewLoginInfo .input-group-addon.eye-icon{
  background: rgba(255, 255, 255, .4) !important;
  border-left:0px;
  color: #333;
}
.NewLoginInfo .input-group-addon.eye-icon:hover{
  background: rgba(255, 255, 255, .4) !important;  
  color: #124191;
}
.alert{
  padding: 5px 15px !important;
}
.NewLoginInfo  input:hover,
.NewLoginInfo  input:focus{
  opacity: 1;  
}
.NewLoginInfo .input-group input:hover,
.NewLoginInfo .input-group input:focus{
  border:1px solid #124191;
  border-left:0px;
  box-shadow: none; 
}
body {
   /*  background-image: url(/assets/images/login-bg.jpg) !important; */
    background-size: cover;
    background-position: center;
}
/*body:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #03a9f447;
    content: "";
    top: 0;
    left: 0;
}*/
.mid-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh)
}
.side-logo {
    width: 300px;
    padding: 40px;
    float: left;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
}
.side-logo img {
    width: 100% !important;
}
.side-content{
  padding:30px;
  letter-spacing: 2px;
  float: left;
  width: 100%;
}
.side-content h1 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 25px;
  width: 51rem;
  font-weight: bold;
  margin-top: -50%;
  background: rgb(0 0 0 / 45%);
  padding: 20px;
}
.side-content p{
  font-size: 17px;
  color: #fff;
  letter-spacing: 0px;
}
.side-content h1 span{
  display: block;
  color: #124191;
}
#formContent  {
    width: 320px;
    min-height: 410px;
    display: inline-block;
    background: none;
} 
#formContent .front, #formContent .back {
  width: 320px;
  min-height: 410px;
  display: table;
  /* background: rgba(255, 255, 255, 0.7); */
  /* background: #ccc; */
  background: url(/assets/images/login-bg.png) no-repeat center center;
  background-size: cover;
}
#formContent .NewLoginInfo {
    width: 90%;
  }
#formContent h1 {
    margin: 45px 0 30px 0;
    font-size: 30px;
        color: #565151f5;
}
div#formContent .form-group {
    margin-bottom: 25px;
}
div#formContent input[type="submit"]{
  margin:0 0 25px 0;
}
#formFooter {
    margin: 0 0 25px 0;
    padding: 0px;
}
.socialIcon {
    width: 100%;
    float: left;
}
.socialIcon ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.socialIcon ul li {
    display: inline-block;
}
.socialIcon ul li a {
  float: left;
  display: inline-block;
}
.socialIcon ul li i {
  width: 30px;
  height: 30px;
  background: #444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  float: left;
  margin: 0 5px;
  opacity: 0.9;
  cursor: pointer;
}
.socialIcon ul li a:hover i {
  opacity: 1;
}

.mid-wrap .login-card{
    text-align: right;
    padding-right: 60px;
}
.socialIcon ul li i.fab.fa-facebook-f {
   background: #4e71a8;
}
.socialIcon ul li i.fab.fa-linkedin-in {
    background: #1686b0;
}
.socialIcon ul li i.fab.fa-youtube {
    background: #d41c1c;
}
.socialIcon ul li i.fab.fa-twitter {
    background: #28aae1;
}
button#click_me {
    width: 35px;
    height: 35px;
    background: #124191d1;
    border: 4px solid #124191;
    position: fixed;
    right: -14px;
    top: -13px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.alert{
  width: 100%;
  float: left;
}
#modalOTP .NewLoginInfo {
    width: 100%;
}
#modalOTP .NewLoginInfo p{
  width: 100%;
  float: left;
}
#modalOTP .NewLoginInfo p a{
  color: #124191;
}
.otp-field{
    margin-bottom: 15px;
    display: flex;
    margin-top: 15px;
    flex-wrap: nowrap;
    min-width: 100%;
    align-items: center;
    justify-content: center;
    float: left;
}
.otp-field input{
    margin-right: 10px !important;
    float: left;
    border:2px solid #124191!important;
    outline: 0 !important;
    box-shadow: none;
    color: #124191;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background: rgba(36, 70, 148, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 0px;

}
.btn-primary{
    color: #fff !important;
    background: #124191 !important;
    border: 1px solid #124191 !important;
    opacity: 0.9 !important;
    border-radius: 0px;
  }
  .btn-primary:hover, .btn-primary:focus {
    color: #fff !important;
    background: #124191 !important;
    border: 1px solid #124191 !important;
    opacity: 1 !important;
  }
  #modalOTP .modal-dialog {
    width: 450px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #555;
}
@media only screen and (max-width: 900px) {
  .side-content h1 {
    font-size: 36px;
    margin-top:20px;
  }
  .side-content h1 span {
      font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .side-content h1 span {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .side-logo{
    position: relative;
  }
  .mid-wrap{
    display: block;
    height: auto;
  }
  .side-logo{
    padding: 15px
  }
  .side-content {
    padding: 0px;
    margin-bottom: 25px;
  }
  .side-content h1 {
    font-size: 30px
  }
  .mid-wrap .login-card{
    padding-right:15px;
  }
  #formContent {
    width: 100%;
    max-width: 100%;
    float: left;
    margin-bottom: 15px;
}

}
@media only screen and (max-width: 480px) { 
  #icon {
    width: 100%;
  }
    #modalOTP .modal-dialog {
      width:95%;
  }
}
/*===================IE Compatibility CSS Start============================================*/
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
    input[type=text]::-ms-clear {  display: none !important; }
    input[type=password]::-ms-reveal {  display: none !important;}
  }
/*===================IE Compatibility CSS END==============================================*/

.front .NewLoginInfo .input-sm, 
.back .NewLoginInfo .input-sm,
.front .NewLoginInfo .input-sm:hover, 
.back .NewLoginInfo .input-sm:hover,
.front .NewLoginInfo .input-sm:focus, 
.back .NewLoginInfo .input-sm:focus {
  color: #fff !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0;
  border-bottom: 1px solid #fff;
  border-radius: 0px !important;  
  padding: 0 !important;
}
#formContent h1{
  color: #fff !important;
}
.NewLoginInfo .input-group-addon,
.NewLoginInfo .input-group-addon.eye-icon {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #fff !important;
  color: #fff !important;
  border-radius: 0px !important;
}
div#formContent input[type="submit"],
div#formContent input[type="submit"]:hover {
  background-color: #fff !important;
  color: #000 !important;
  opacity: 1 !important;
}
div#formContent small {
  color: #fff !important;
}
input[type=text]:placeholder {
  color: #fff !important;
}
div#formContent a{
  color: #fff !important;
}
::placeholder {
	color: #fff !important;
}