/*===========Login page CSS Rules===========*/

.login-body {
  background: url("../images/bg.jpeg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.login-box .img-wrap {
  height: 100%;
}
.login-wrapper {
  background: rgba(0, 0, 0, 0.7);
  height: 100vh;
  position: relative;
}
.input-group-text {
  background-color: #4aa69b !important;
}
.login-box {
  width: 60%;
  padding: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  transition: 300ms;
}

.login-box .input-group {
  height: 40px;
}
.login-box input {
  height: 40px;
}
.login-box-info {
  background: #4aa69b;
  padding: 45px 30px !important;
  text-align: center;
}

.login-box-info p {
  line-height: 25px !important;
}

.login-box-form {
  background: #fff;
  color: #333;
  padding: 45px 30px !important;
}

.login-box-info a,
.login-box-form button,
.login-box-form input[type="submit"] {
  font-size: 15px;
  font-weight: 500;
}

.login-box .btn-outline-theme {
  color: #4aa69b;
  border: 1px solid #4aa69b;
  background: #fff;
}

.login-box .btn-outline-theme:hover {
  color: #fff;
  background: #4aa69b;
}

.login-box .text-theme {
  color: #4aa69b !important;
}
.login-box .btn-blue-fill,
.login-box .btn-blue-outline {
  min-width: 150px;
}
.login-box .form-control {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
}
.login-box .error {
  color: red;
  font-size: 10px;
  position: absolute;
  bottom: -22px;
}

@media screen and (max-width: 992px) {
  .login-box {
    width: 100%;
  }
}
