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

.login-body {
  background: url("../images/bg1.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);*/
    background: skyblue;
    height: 100vh;
    position: relative;
}
/*.login-wrapper {
    background: url("../images/saral_bg_Image.jpeg");
    position: relative;
    background-repeat: no-repeat, repeat;
}*/
.login-box {
  width: 60%;
  padding: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  transition: 300ms;
}
/* .login-box .input-group-text {
  background-color: #101439;
  color: #fff;
}
.login-box .input-group i:after,
.input-group i:before {
  color: #fff;
} */
.login-box .login-header {
  letter-spacing: 1px;
}
.login-box-info {
  background: #101439;
  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: #101439;
  border: 1px solid #101439;
  background: #fff;
}

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

.login-box .text-theme {
  color: #101439 !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;
}
/*==Login and Register page CSS Rules=====*/
.login-signin,
.login-signup,
.login-forgot {
  display: none;
}

.login-signin.show,
.login-signup.show,
.login-forgot.show {
  display: block;
}

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