#signin .banner::after {
  display: none;
}
#signin .banner .container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: transparent;
  border-radius: 50%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
#signin .banner .container input {
  border: none;
  padding: 15px;
  margin-bottom: 10px;
  background: rgba(35, 35, 35, 0.1607843137);
  border-radius: 5px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #333;
  transition: background-color 5000s ease-in-out 0s;
  outline: none;
  box-shadow: inset 0 0 20px 20px rgba(35, 35, 35, 0.1607843137);
}
#signin .banner .container input:-webkit-autofill, #signin .banner .container input:-webkit-autofill:hover, #signin .banner .container input:-webkit-autofill:focus, #signin .banner .container input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #333;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  outline: none;
  box-shadow: inset 0 0 20px 20px rgba(35, 35, 35, 0.1607843137);
}
#signin .banner .container button {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 6px 20px;
  background: rgb(43, 45, 47);
  color: #71DFBE;
  border: none;
  font-size: 16px;
  font-family: "Poppins";
  margin-bottom: 20px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
#signin .banner .container button:hover {
  color: rgb(43, 45, 47);
  background-color: #71DFBE;
  border: 2px solid rgba(43, 45, 47, 0.427);
}
#signin .footer {
  margin-top: 0;
}

.password-group {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

.eye {
  background-image: url(/images/eye.png);
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
  top: -3px;
  right: -9px;
  transform: scale(0.6);
}

.eye-slash {
  background-image: url(/images/eye-slash.png);
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
  top: -3px;
  right: -9px;
  transform: scale(0.6);
}

.notification {
  padding: 10px;
  margin: 15px 0;
  border-radius: 5px;
}

.success {
  background-color: #dff0d8;
  color: #3c763d;
}

.error {
  background-color: #f2dede;
  color: #a94442;
}

.reset-password input,
.update-password input {
  width: 100%;
}
.reset-password h1,
.update-password h1 {
  text-align: center !important;
  max-width: -moz-min-content;
  max-width: min-content;
}

@media screen and (max-width: 1024px) {
  .banner .container {
    width: 100%;
  }
  .banner p {
    color: var(--lighter-green);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  #signin .banner .container {
    width: 100%;
  }
  #signin .banner .form-group {
    background-color: rgba(143, 205, 173, 0.5490196078);
  }
}/*# sourceMappingURL=signin.css.map */