* {
  font-family: "Poppins", sans-serif;
}

body {
  padding: 0 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url('../images/login-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#error {
  position: absolute;
  padding: 0.75rem 1rem;
  width: 420px;
  font-size: 16px;
  top: -100%;
  /* top: 0; */
  text-align: center;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.09);
  color: #fff;
  transition: all 100ms ease-in-out;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}

#error:hover {
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

#error.active {
  top: 0px;
}

.wrapper {
  width: 420px;
  background: purple;
  padding: 30px 40px;
  border-radius: 15px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 200ms ease-in-out;
}

.wrapper:hover {
  backdrop-filter: blur(25px);
  background: rgba(0, 0, 0, 0.09);
}

.wrapper:hover h1 {
  color: #fff;
}

.wrapper:hover .input-box input {
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.wrapper:hover .input-box input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.wrapper:hover .input-box i {
  color: rgba(255, 255, 255, 0.9);
}

.wrapper:hover .input-box input {
  color: #fff;
}

.wrapper h1 {
  font-size: 36px;
  text-align: center;
  color: #333;
  transition: all 200ms ease-in-out;
}

.wrapper .input-box {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  font-size: 16px;
  color: #333;
  padding: 20px 45px 20px 20px;
  transition: all 200ms ease-in-out;
}

.input-box input::placeholder {
  color: rgba(0, 0, 0, 0.6);
  transition: all 200ms ease-in-out;
}

.input-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: all 200ms ease-in-out;
}

.wrapper .btn {
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.wrapper .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wrapper .admin-login-wrapper,
.wrapper .user-login-wrapper {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper .admin-login-wrapper a,
.wrapper .user-login-wrapper a {
  color: #d1d1d1;
  text-decoration: none;
  transition: all 200ms ease-in-out;
}

.wrapper .admin-login-wrapper a:hover,
.wrapper .user-login-wrapper a:hover {
  color: #fff;
}

/* disabled css */

.wrapper .admin-login-wrapper a.disabled-link,
.wrapper .user-login-wrapper a.disabled-link {
  opacity: 0.5;
  cursor: not-allowed;
}

.wrapper .admin-login-wrapper a.disabled-link:hover,
.wrapper .user-login-wrapper a.disabled-link:hover {
  color: #d1d1d1;
}



@media all and (min-width:768) {
  body {
    padding: 0;
  }
}