/**,*/
/**::before,*/
/**::after {*/
/*    box-sizing: border-box;*/
/*}*/
/*.login-page{*/
/*    background: #e9ecef;*/
/*    height: 100vh;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/
/*.login-box{*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    width: 360px;*/
/*    background: #fff;*/
/*    box-shadow: 0 0 1px rgba(0,0,0,.125),0 1px 3px rgba(0,0,0,.2);*/
/*}*/

/*.login-msg{*/
/*    margin: 0;*/
/*    padding: 0 20px 20px;*/
/*    text-align: center;*/
/*}*/

/*.login-card{*/
/*    padding: 20px;*/
/*}*/

/*.login-card-header{*/

/*}*/

/*.login-card-body{*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .login-card {*/
/*        margin-top: .5rem;*/
/*        width: 90%;*/
/*    }*/
/*}*/
@font-face {
  font-family: "Roboto Light";
  src: url('../fonts/Roboto-Light.ttf');
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto Light';
}
.login-page{
  background: url("../img/login-bg.jpg") no-repeat fixed center center;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

.login-container{
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.login-header{
  padding: 20px;
}

.login-body{
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.login-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  width: 35%;
  max-width: 350px;
  background: rgba(255,255,255, 0.5);
  border-radius: 3px;
}
.login-box-header{
  display: flex;
  flex-direction: column;
}
.login-box-logo{
  display: flex;
  justify-content: center;
}
.login-box-logo img{
  width: 64px;
}
.login-box-title p{
  color: #4279a8;
  font-weight: 500;
  font-size: 48px;
  text-align: center;
}
.login-box-body{
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  padding: 15px;
}
.login-input-group:not(:first-child) {
  padding: 0 15px 15px 15px;
}

.login-button-group{
  padding: 15px;
  text-align: center;
}

.login-input{
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  color: #262C31;
  letter-spacing: 1px;
  background: transparent;
  border: none ;
  border-radius: 0 ;
  border-bottom: 1px solid #262C31 ;
  outline: none;
  height: 45px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding-left: 45px;
}

.login-input-img{
  width: 35px;
  position: absolute;
  padding-left: 15px;
  padding-top: 8px;
  pointer-events: none;
}


.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 5px 55px;
  font-size: 24px;
  line-height: 1.5;
  border-radius: 10px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;

}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:focus {
  outline: 0;
  box-shadow: none;
}


.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  box-shadow: none;
}

.btn-blue{
  color: #fff;
  background-color: #4279a8;
  border-color: #4279a8;
}

.btn-blue:hover{
  color: #fff;
  background-color: #38668d;
  border-color: #38668d;
}


@media (max-width: 998px){
  .login-box{
    width: 50%;
  }
  .login-logo{
    text-align: center;
  }
}
@media (max-width: 767.98px){
  .login-box{
    width: 65%;
  }
}

@media (max-width: 575.98px) {
  .login-box{
    width: 75%;
  }
  .login-box-body{
    padding: 10px;
  }
  .login-box-title p{
    font-size: 40px;
  }
  .login-input-group:not(:first-child){
    padding: 0 5px 15px 5px;
  }
  .btn{
    font-size: 17px;
  }
}

@media (max-width: 375px) {
  .login-box{
    width: 75%;
  }
  .login-box-body{
    margin-top: 7px;
  }
  .login-box-title p{
    font-size: 36px;
  }
  .login-input-group:not(:first-child){
    padding: 0 2px 10px 2px;
  }
  .btn{
    font-size: 15px;
  }
}

