.bg-login {
	background: url( "../images/bg-login.webp") no-repeat 100% fixed !important;
	background-color: #dc3545 !important;
	background-size: cover !important;
	background-position: top !important;
}

.back-to-home {
  position: fixed;
  z-index: 1;
  top: 4%;
  right: 2%;
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 36px;
  width: 36px;
  line-height: 33px;
  border-radius: 6px;
  text-align: center;
  background: #2f55d4;
  color: #fff !important;
}
.back-to-home .icons {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.back-to-home:hover {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.back-to-home:hover .icons {
  -webkit-transform: rotate(45deg) !important;
          transform: rotate(45deg) !important;
}

.account-logo-area {
  position: relative;
  margin-top: -30px;
  margin-bottom: 10px;
}
.account-logo-area .account-logo img {
  height: 100px;
}

.account-header {
  margin-bottom: 30px;
}
.account-header .title {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
}
.account-header .title::before {
  content: "";
  height: 2px;
  position: absolute;
  top: 10px;
  width: 20%;
  background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.2) 0%, rgba(96, 105, 117, 0.3) 100%);
  left: 0;
}
.account-header .title::after {
  content: "";
  height: 2px;
  position: absolute;
  top: 10px;
  width: 20%;
  background: -webkit-linear-gradient(right, rgba(96, 105, 117, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
  right: 0;
}
@media only screen and (max-width: 991px) {
  .account-header .title {
    font-size: 18px;
  }
}

.account-form-area {
  position: relative;
  padding: 30px;
  border-radius: 3px;
  background: white;
  border: 1px solid #e1e7ec;
}
@media only screen and (max-width: 767px) {
  .account-form-area {
    padding: 20px;
  }
}
.account-form-area::before {
  background: white;
  border: 1px solid #e1e7ec;
  border-radius: 3px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#f9f9f9',GradientType=0 );
  content: "";
  display: block;
  height: 100%;
  left: -1px;
  position: absolute;
  width: 100%;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  transform: rotate(-3deg);
  top: 0;
  z-index: -2;
}
@media only screen and (max-width: 991px) {
  .account-form-area::before {
    display: none;
  }
}
.account-form-area::after {
  background: white;
  border: 1px solid #e1e7ec;
  border-radius: 3px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#f9f9f9',GradientType=0 );
  content: "";
  display: block;
  height: 100%;
  left: -1px;
  position: absolute;
  width: 100%;
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  -o-transform: rotate(2deg);
  transform: rotate(2deg);
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .account-form-area::after {
    display: none;
  }
}
