body {
    background-image: url("../images/laundry_prem.png");
    background-size: cover;
    height: 100vh !important;
    background-repeat: no-repeat;

}


  .rfx {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 12;
  }

.nav-bar {
      width: 100%;
      max-height: 75px;
      padding: 18px 0;
      background: rgb(74, 196, 233);
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 99;
  }
  .nav-bar .nav-left {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  .nav-bar .nav-left i {
      padding: 0 10px;
      font-size: 30px;
      color: #fff;
  }
  .nav-bar .nav-left img {
      width: 100px;
      margin-left: 40px;
  }
  .nav-bar .nav-right {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  .nav-bar .nav-right span,i {
      color: #fff;
  }
  .nav-bar .nav-right span {
      padding: 0 15px 0 5px;
  }
  .nav-bar .nav-right a {
    text-decoration: none;
  }

@media (max-width: 400px) {
    .nav-bar .nav-left img {
        margin-left: 10px;
        width: 85px;
    }
}
/* Login modal */

.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(2px);
}
.login-overlay.active-modal {
    display: flex;
}

form {
    padding: 0 20px;
}

.auth-wrapper {
  position: relative;
  top: 10px;
  width: 400px;
  height: 440px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform: scale(0);
  transition: transform .5s ease, height .2s ease;
  transform: scale(1);
  backdrop-filter: blur(10px);
}

.auth-wrapper .icon-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #162938;
  font-size: 1.2em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 20px;
  cursor: pointer;
  z-index: 120;
}

.auth-wrapper.active-popup {
  transform: scale(1);
}

.auth-wrapper.active {
  height: 500px;
}

.auth-wrapper .form-box {
  width: 100%;
  padding: 20px;
}

.auth-wrapper.stretch {
  height: 500px;
}

.auth-wrapper .form-box.logon {
  transition: transform .18s ease;
  transform: translateX(0);
}

.auth-wrapper.active .form-box.logon {
  transition: none;
  transform: translateX(-400px);
}

.auth-wrapper .form-box.register {
  position: absolute;
  transition: none;
  transform: translateX(400px);
}

.auth-wrapper.active .form-box.register {
  transition: transform .18s ease;
  transform: translateX(0);
}
.form-box h2 {
  position: relative;
  top: 10px;
  font-size: 1.4em;
  color: #e2e8ec;
  text-align: center;
}

.form-box h2.rf {
    top: 20px;
}

input {
    box-sizing: border-box;
}

.input-box {
  position: relative;
  width: 100%;
  height: 40px;
  border-bottom: 2px solid #e2e8ec;
  margin: 20px 0;
}
.input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: #e2e8ec;
  font-weight: 500;
  pointer-events: none;
  transition: .5s;
}
.input-box input:focus ~label,
.input-box input:valid ~label {
  top: -5px;

}
.input-box input, .flash {
  width: 100%;
  height: 40px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  color: #e2e8ec;
  font-weight: 600;
  padding: 0 35px 0 5px;
}

.flash {
    text-align: center;
}
.input-box .icon {
  position: absolute;
  right: 8px;
  font-size: 0.9em;
  color: #e2e8ec;
  line-height: 57px;
}
.remember-forgot {
  font-size: 0.8em;
  color: #e2e8ec;
  font-weight: 400;
  margin: -15px 0 15px;
  display: flex;
  justify-content: space-between;
}

.psw-message p {
    margin: -4px 0 2px;
    color: #f02929;
    font-size: 12px;
}

.psw-message p.blink {
    animation: blink-animation 0.3s steps(15, start) forwards;
}

@keyframes blink-animation {
      0%, 100% {
        visibility: visible;
    }
    50% {
        visibility: hidden;
    }
  }

.remember-forgot .terms-and-conditions {
  color: #32abe7;
}

.remember-forgot label input {
  accent-color: #e2e8ec;
  margin-right: 3px;
}
.remember-forgot a {
  color: #e2e8ec;
  text-decoration: none;
}
.remember-forgot a:hover {
  text-decoration: underline;
}
.btn-go {
  width: 100%;
  height: 45px;
  background: #1188e2;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8em;
  color: #fff;
  font-weight: 600;
}
.btn-go-reg {
  width: 100%;
  height: 45px;
  background: #acaeb0;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2em;
  color: #434141;
  font-weight: 600;
}
.login-register {
  font-size: .9em;
  color: #162938;
  text-align: center;
  font-weight: 500;
  margin: 15px 0 35px;
}
.login-register p a {
  color: #c79216;
  text-decoration: none;
  font-weight: 600;
}
.login-register p a:hover {
  text-decoration: underline;
}
form :where(i, p){
    color: #32abe7;
}

@media (max-width: 400px) {
    body {
        background-size: contain;
        background-repeat: repeat;
    }
    .auth-wrapper {
        width: 90%;
        min-width: 200px !important;
  }
  .auth-wrapper.active .form-box.logon {
      transition: none;
      transform: translateX(-400px);
    }

    .auth-wrapper .form-box.register {
      position: absolute;
      transition: none;
      transform: translateX(400px);
    }
  }