*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html{
  /*background: #7d8183 url(../../../public/assets/icon/bg-login.png);*/
  background-color: #0a95ba !important;
  background: -webkit-linear-gradient(legacy-direction(-45deg),#0a95ba,#0a95ba) !important;  
  background: linear-gradient(-45deg, #0a95ba, #0a95ba) !important;    
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height:100%;
}

/*html{
  background: #0073C5 url(../../../public/images/bg.jpg);
  background-color: #1e5f9c !important;
  background: -webkit-linear-gradient(legacy-direction(-45deg),#1e5f9c,#75b0e6) !important;  
  background: linear-gradient(-45deg, #1e5f9c, #75b0e6) !important; 
   
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height:100%;
  width: 100%;
}*/

body{
  font-family: "arial", sans-serif;
  overflow: hidden;   
}

a{
  text-decoration: none;
  color: #0786a8;
  font-size: 0.9rem;
  transition: .3s;
}

a:hover{
  color: #5e7b97;
}
h2{font-size: 0.8em; color:#7c7c7c; padding:15px 0 0px 0; font-family: "andulus", sans-serif;}
h3{font-size: 0.8em; color:#818e9b; font-weight: normal; font-size: 1.03rem; padding:5px 0 20px 0; font-family: "andulus", sans-serif;text-align: center;}

.footer{color:#21515e;text-align: center;font-size: 0.9rem;width:300px;padding: 10px 0 0px 0;margin:0 auto;clear:both;}
.subfooter{color:#0786a8;text-align: center;width:300px;padding: 5px 0 20px 0;margin:0 auto;clear:both;}
.subfooter a{color:#21515e;font-size: 0.7rem;}

.header{
  float: left
  width: 100%;
  padding:0;
  margin:30px 0 0 0;
  z-index: -1;
  /*border:1px solid red;*/
  text-align : center;
}

.header img{ 
  width: 100px;
}
.container{
  background-color: rgba(255,255,255,0.90);
    width: 400px;
    margin:5% auto;
    padding:0;
    border:4px solid rgba(255,255,255,0.3);
    box-shadow: 2px 10px 18px 8px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
    border-radius: 10px;
}

.logo { margin-top:20px }
.logo img { width: 80%; }

.login-content{ 
  position: relative; 
  padding:0;
  width:100%;
  height:auto;
  margin:0 auto;
  
}


form{
  width: 300px;
  margin:0 auto;
}


.login-content h2{
  align-items: center;
  text-align: center;
  margin: 5px 0;
  color: #3e4d4f;
  /*text-transform: uppercase;*/
  font-size: 1.4rem;
}

.login-content .input-div{
  position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 15px 0;
    padding: 3px 15px;
    border: 2px solid #dde1e5;
    border-radius: 3px;
    background-color: rgba(255,255,255,0.60);
}

.login-content .input-div.one{
  margin-top: 0;
}

.i{
  color: #566874;
  display: flex;
  justify-content: center;
  align-items: center;
}

.i i{
  transition: .3s;
}

.input-div > div{
    position: relative;
  height: 45px;
}

.input-div > div > h5{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  transition: .3s;
}

.input-div:before, .input-div:after{
  content: '';
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #2f95a1;
  transition: .4s;
}

.input-div:before{
  right: 50%;
}

.input-div:after{
  left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
  width: 50%;
}

.input-div.focus > div > h5{
  top: -5px;
  font-size: 15px;
}

.input-div.focus > .i > i{
  color: #0a717d;
}

.input-div > div > input{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0.5rem 0.7rem;
  font-size: 1.2rem;
  color: #555;
  font-family: "arial", sans-serif;
  font-weight:normal;
}

.input-div.pass{
  margin-bottom: 4px;
}



.btn{
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-image: linear-gradient(to right, #04a4ce, #0786a8, #04a4ce);
  background-size: 200%;
  font-size: 1.2rem;
  color: #fff;
  font-family: "tahoma", sans-serif;
  /*text-transform: uppercase;*/
  margin: 1rem 0;
  cursor: pointer;
  transition: .5s;
}
.btn:hover{
  background-position: right;
}


/* style mobile */
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {

  .container{
    width: 80%;
    margin:10% auto;
  }

  .login-content{
    width: 100%;
  }

  .header{ display: block; }
  .header img{ 
  -webkit-border-radius: 0 0 14px 14px;
  -moz-border-radius: 0 0 14px 14px;
    border-radius: 0 0 40% 40%; 
    }
}


.alerts{border:0;position:relative;z-index:99999;padding:.95rem 1.25rem;border-radius:1px;color:inherit;background-color:#fff;-webkit-box-shadow:1px 1px 14px 0 rgba(18,38,63,.26);-moz-box-shadow:1px 1px 14px 0 rgba(18,38,63,.26);box-shadow:1px 1px 14px 0 rgba(18,38,63,.26)}
.alerts.hide{display:none;}
.alerts [data-notify=icon]{display:block}
.alerts [data-notify=icon]::before{line-height:35px;font-size:22px;display:block;left:15px;position:absolute;top:50%;transform:translateY(-50%);width:35px;height:35px;border-radius:30px;text-align:center;color:#fff}
.alerts [data-notify=title]{display:block;color:#2b2b2b;font-weight:500;font-size:15px}
.alerts [data-notify=message]{font-size:13px;color:#908e8e;padding-right:25px}
.alert-notify{display:inline-block;margin:0px auto;padding-left:65px;position:fixed;transition:all 0.5s ease-in-out 0s;z-index: 9999;top:20px;right:30px;margin-left:30px;min-width:300px;max-width:400px}/* .alert .close{background:rgba(255,255,255,.8);width:25px;height:25px;line-height:25px;top:12px!important;border-radius:50%} */.alert-default{border-left:4px solid #1a2035}
.alert-default [data-notify=icon]:before{background:#1a2035}
.alert-primary{border-left:4px solid #1572e8;}
.alert-primary [data-notify=icon]:before{background:#1572e8;}
.alert-secondary{border-left:4px solid #2db431;}
.alert-secondary [data-notify=icon]:before{background:#2db431;}
.alert-info{border-left:4px solid #48abf7;}
.alert-info [data-notify=icon]:before{background:#48abf7;}
.alerts-success{border-left:4px solid #31ce36;}
.alerts-success [data-notify=icon]:before{background:#31ce36;}
.alert-warning{border-left:4px solid #ffad46;}
.alert-warning [data-notify=icon]:before{background:#ffad46;}
.alert-danger{border-left:4px solid #f25961;}
.alert-danger [data-notify=icon]:before{background:#f25961;}
.alerts .btnclose{ position: absolute; top:5px; right:5px; cursor: pointer; background:rgba(255,255,255,.8);width:25px;height:25px;line-height:25px;border-radius:50%;border:0;} 
.alerts .btnclose{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:Lato,sans-serif;}
.alert-dismissible .close {position: absolute;top: 0;right: 10px; padding: .75rem 1.25rem;color: inherit;}
.alerts .btnclose {font-size: 1.3rem;font-weight: 700;line-height: 1;color: #000;text-shadow: 0 1px 0 #fff;    opacity: .5;}
