/*Login Screen*/
.logo {
  width: 100%;
  max-width: 142px;
  height: 40px;
}
.input-group.has-error .form-control {
  border-color: #fe0303;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.error-msg {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #fe0303;
  font-size: 12px;
}
.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-items-center {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.justify-center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.login-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}
.login-form {
  width: 100%;
  max-width: 560px;
}
.login_bg {
  flex: 1;
  background: url(../../images/login-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.logo {
  margin: 0 auto 60px;
  display: block;
  height: auto;
  max-width: 160px;
}
.login-form-content {
  max-width: 72%;
  margin: 0 auto;
  width: 100%;
}
.login-container a:hover,
.login-container a:active {
  text-decoration: none;
}
.login-form-content .input-group {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  float: none;
}
.login-form-content .input-group label {
  color: #000;
  font-size: 16px;
  letter-spacing: 0.19px;
  margin-bottom: 10px;
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}
.login-form-content .input-group .form-control {
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  box-shadow: none;
  color: #000;
  font-size: 14px;
  display: block;
  float: none;
  width: 100%;
  height: 50px;
  padding: 10px 25px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  letter-spacing: 0.19px;
}
.login-form-content .input-group .form-control::placeholder {
  color: #b2b2b2;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}
.align-right {
  text-align: right;
}
.forgot_link {
  color: #156fc8;
  font-size: 14px;
  display: inline-block;
  margin: 5px 0 25px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  letter-spacing: 0.19px;
}
.signin-btn {
  width: 100%;
  color: #fff;
  height: 50px;
  border-radius: 4px;
  background: #014ECE;
  background: -moz-linear-gradient(left, #014ECE 0%, #014ECE 100%);
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, #014ECE),
    color-stop(100%, #014ECE)
  );
  background: -webkit-linear-gradient(left, #014ECE 0%, #014ECE 100%);
  background: -o-linear-gradient(left, #014ECE 0%, #014ECE 100%);
  background: -ms-linear-gradient(left, #014ECE 0%, #014ECE 100%);
  background: linear-gradient(to right, #014ECE 0%, #014ECE 100%);
  border: none;
  font-size: 16px;
  box-shadow: 0px 5px 42px 0px rgba(0, 5, 42, 0.12);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  letter-spacing: 0.19px;
  transition: 0.3s -webkit-box-shadow ease;
}
.login-form-content .input-group.has-error .form-control {
  border-color: #fe0303;
}
.signin-btn:active,
.signin-btn:focus {
  outline: 0;
}
.signin-btn:hover {
  background: #014ECE;
  -webkit-box-shadow: 0 4px 8px 0 rgba(5, 122, 171, 0.2),
    0 2px 10px 0 rgba(5, 122, 171, 0.19);
  box-shadow: 0 4px 8px 0 rgba(5, 122, 171, 0.2),
    0 2px 10px 0 rgba(5, 122, 171, 0.19);
  transition: 0.3s -webkit-box-shadow ease;
  -moz-transition: 0.3s -webkit-box-shadow ease;
  -ms-transition: 0.3s -webkit-box-shadow ease;
  -o-transition: 0.3s -webkit-box-shadow ease;
}
/*Login end*/

@media (max-width: 991px) {
  .login_bg {
    display: none;
  }
  .login-form {
    margin: auto;
  }
}

@media (max-width: 580px) {
  .login-form-content {
    max-width: 100%;
    padding: 30px;
  }
}
