html, body {
  margin: 0;
  color: #6a6f8c;
  background-color: rgba(15, 150, 223, 1);
  font-family: Open Sans, Arial, Helvetica, sans-serif!important;
  min-height: 100vh;
}
*,
:after,
:before {
  box-sizing: border-box;
}
::-webkit-scrollbar
{
	display: none;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.toasty {
    display: flex;
    flex-direction: row;
    min-width: 45%;
    position: absolute;
    top: 6.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: space-between;
    align-items: center;
    background-color: #f8d7da;
    border-radius: 8px;
    border: 1px solid #881c2480;
    padding: 10px 15px;
    transition: all 300ms ease-in-out;
}
.toasty .toasty-text {
    display: inline-flex;
    position: static;
    color: #881c24;
    font-size: 14px;
}
.toasty .toasty-icon {
    display: inline-flex;
    position: static;
    color: #881c24;
    font-size: 14px;
    transition: color 150ms ease-in-out;
}
.toasty .toasty-icon:hover {
    cursor: pointer;
    color: #ca242f;
}
.login-wrap {
  width: 100%;
  margin: auto;
  max-width: 525px;
  min-height: 670px;
  position: relative;
  background: url(https://raw.githubusercontent.com/khadkamhn/day-01-login-form/master/img/bg.jpg)
    no-repeat center;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.login-html {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 90px 70px 50px 70px;
  background: rgba(40, 57, 101, 0.9);
}
.login-html .sign-in-htm,
.login-html .sign-up-htm {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  transition: all 0.4s linear;
}
.login-html .sign-in,
.login-html .sign-up,
.login-form .group .check {
  display: none;
}
.login-html .tab,
.login-form .group .label,
.login-form .group .button {
  text-transform: capitalize;
}
.login-html .tab {
  font-size: 22px;
  margin-right: 15px;
  padding-bottom: 5px;
  margin: 0 15px 10px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
}
.login-html .sign-in:checked + .tab,
.login-html .sign-up:checked + .tab {
  color: #fff;
  border-color: #1161ee;
}
.login-form {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.login-form .group {
  margin-bottom: 15px;
  position: relative;
}
.login-form .group .label,
.login-form .group .input,
.login-form .group .button {
  width: 100%;
  color: #fff;
  display: block;
}
.login-form .group .input,
.login-form .group .button {
  border: none;
  padding: 15px 50px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
}
.login-form .group input[data-type="password"] {
  text-security: circle;
  -webkit-text-security: circle;
}
.login-form .group .label {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.login-form .group .button {
  background: #2f93da;
}
.login-form .group label .icon {
  width: 15px;
  height: 15px;
  border-radius: 2px;
  position: relative;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
}
.login-form .group label .icon:before,
.login-form .group label .icon:after {
  content: "";
  width: 10px;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: all 0.2s ease-in-out 0s;
}
.login-form .group label .icon:before {
  left: 3px;
  width: 5px;
  bottom: 6px;
  transform: scale(0) rotate(0);
}
.login-form .group label .icon:after {
  top: 6px;
  right: 0;
  transform: scale(0) rotate(0);
}
.login-form .group .check:checked + label {
  color: #fff;
}
.login-form .group .check:checked + label .icon {
  background: #1161ee;
}
.login-form .group .check:checked + label .icon:before {
  transform: scale(1) rotate(45deg);
}
.login-form .group .check:checked + label .icon:after {
  transform: scale(1) rotate(-45deg);
}
.login-html
  .sign-in:checked
  + .tab
  + .sign-up
  + .tab
  + .login-form
  .sign-in-htm {
  transform: rotate(0);
}
.login-html .sign-up:checked + .tab + .login-form .sign-up-htm {
  transform: rotate(0);
}

.hr {
  height: 2px;
  margin: 60px 0 50px 0;
  background: rgba(255, 255, 255, 0.2);
}
.foot-lnk {
  text-align: center;
}

/* new added by 16/8/2021 */
.login-left-col {
  display: relative;
  background-size: cover;
  background-image: url("../images/man-hold-credit-card.jpg"),
    linear-gradient(rgb(15 150 223 / 75%), rgb(10 39 98 / 75%)); 
  background-blend-mode: darken;
  padding: 20px 40px;
  height: 100vh;
}
.login-left-col .logo img {
  height: 45px;
}
.login-left-col h1 {
  font-size: 90px;
  font-weight: bold;
  line-height: 1;
}
.login-left-col h4 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.login-left-col a {
  color: #2f93da;
}
.login-left-col .copyright-desktop {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}
.copyright-mobile {
  display: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-top: 2rem;
  color: #fff;
}
.login-form ul {
  padding: 0;
}
.login-form li {
  list-style: none;
  text-align: center;
}
.login-html {
  position: relative;
  background: rgb(30, 12, 32);
  background: linear-gradient(
    41deg,
    rgba(10, 39, 98, 1) 10%,
    rgba(3, 56, 155, 1) 25%,
    rgba(15, 150, 223, 1) 100%
  );
  height: 100vh;
  padding: 35px;
}
.login-html form {
  width: 45%;
}
.login-html h3 {
  letter-spacing: 1px;
}
.show-pwd {
  position: absolute;
  bottom: 15px;
  right: 25px;
}
.show-user {
  position: absolute;
  bottom: 15px;
  left: 25px;
}
.alert {
  padding: 0;
  margin: 0;
}
.alert-danger {
  background: none;
  border: none;
}
.btn-language {
  position: absolute;
  top: 35px;
  right: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff!important;
  border: 1px solid #fff!important;
  color: #323232!important;
  margin-bottom: 5px!important;
  border-radius: 5px;
}
.btn-custom {
  background: none;
  border: 1px solid #fff;
  color: #fff !important;
}
.lang-icon {
  height: 24px;
  padding-right: 15px;
}
.dropdown-toggle::after {
  font-family: "fontawesome";
  content: "\f078";
  border: none;
  vertical-align: initial;
}
.login-block {
  position: relative;
}

@media screen and (max-width: 1200px) {
  .login-left-col h1 {
    font-size: 70px;
  }
}

@media screen and (max-width: 768px) {
  .login-html form {
    width: 85%;
  }
  .login-left-col h4 {
    font-size: 18px;
  }
  .btn-custom {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .login-html {
    height: 85svh;
    padding: 50px 20px;
  }
  .copyright-mobile {
    display: block;
  }
  .login-left-col {
    height: auto;
    min-height: 35dvh;
    padding: 20px;
  }
  .login-left-col .logo {
    position: relative;
  }
  .login-left-col .logo img {
    height: 50px;
  }
  .login-left-col .copyright-desktop {
    display: none;
  }
  .login-left-col h1 {
    font-size: 55px;
  }
  .lang-title {
    display: none;
  }
  .lang-icon {
    height: 16px;
    padding-right: 5px;
  }
  
  #lang-btn-group #lang-switcher-text {
    display: none;
  }
}
