:root {
  --primary-color: #7DA215;
  --text-color: #DADADA;
  --background-body: linear-gradient(to top, #0d0d0d, rgba(20, 20, 20, 0.9));
  --form-background: linear-gradient(to top, #0d0d0d, rgba(255, 255, 255, 0.1));
  --plainclr: #fff;
}

button,
input {
  font: inherit;
  border: none;
}

.login {
  /* Form Section */
}
.login.three {
  height: 100vh;
  margin: 0;
  background: #0f0f0f;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.login.three::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(45deg, rgba(0, 255, 255, 0.05) 0 2px, transparent 2px 20px);
  animation: linesMove 20s linear infinite;
  z-index: 0;
}
@keyframes linesMove {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-50%, -50%);
  }
}
.login.three .login-wrapper {
  position: relative;
  padding: 5px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  width: 90%;
  max-width: 400px;
}
.login.three .border-animation {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, #00ffff, #ff00ff, #00ff00, #ff0000, #00ffff);
  background-size: 300% 300%;
  animation: borderSpin 5s linear infinite, hueRotate 8s linear infinite;
  z-index: 1;
  filter: blur(20px);
}
@keyframes borderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes hueRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
.login.three .login-box {
  position: relative;
  background: #1e1e1e;
  padding: 40px;
  border-radius: 18px;
  width: 100%;
  z-index: 2;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5333333333);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.login.three .login-box h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
.login.three .input-box {
  position: relative;
  margin-bottom: 25px;
}
.login.three .input-box input {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #555;
  border-radius: 5px;
  color: #fff;
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}
.login.three .input-box label {
  position: absolute;
  left: 12px;
  top: -9px;
  color: #aaa;
  transition: 0.3s ease;
  pointer-events: none;
  background: #1e1e1e;
  padding: 0 5px;
  font-size: 0.8rem;
}
.login.three .input-box input:focus,
.login.three .input-box input:valid {
  border-color: #00ffff;
}
.login.three .input-box input:focus + label,
.login.three .input-box input:valid + label {
  top: -10px;
  font-size: 0.7rem;
  color: #00ffff;
}
.login.three .toggle {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #aaa;
  cursor: pointer;
}
.login.three button {
  position: relative;
  background: #00ffff;
  color: #000;
  font-weight: bold;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: box-shadow 0.3s;
  font-size: 0.9rem;
}
.login.three button span {
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  z-index: 0;
  transition: all 0.4s ease;
  border-radius: 5px;
  opacity: 0.1;
}
.login.three button:hover span {
  left: 0;
}
.login.three button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 255, 255, 0.4666666667);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
  z-index: 0;
}
.login.three button:active::after {
  width: 200px;
  height: 200px;
}
.login.three .error-message {
  display: none;
  color: #ff4444;
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
}
.login .form__section {
  width: 100%;
}
.login .form {
  max-width: 300px;
  width: 100%;
  background: var(--form-background);
  border-radius: 8px;
  border: 2px solid #414141;
  padding: 20px;
  margin: 0 auto;
}
.login .form__title {
  font-weight: 600;
  font-size: 1rem;
}
.login .form__sub-title {
  margin-top: 5px;
  font-size: 0.8rem;
}
.login .form__input-label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 20px;
}
.login .form__input-wrapper {
  margin-top: 4px;
  position: relative;
  height: 36px;
}
.login .form__input {
  background-color: #303030;
  border: 1px solid #414141;
  border-radius: 4px;
  padding: 0px 16px;
  height: 36px;
  font-size: 0.8rem;
  width: 100%;
  outline: none;
  color: inherit;
}
.login .form__input:focus {
  border-color: var(--primary-color);
}
.login .form__input--has-svg {
  padding-right: 40px;
}
.login .form__pass-toggle {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 16px;
  transition: all 100ms linear;
}
.login .form__remmember, .login .form__sign-up {
  display: block;
  font-size: 0.7rem;
  margin-top: 15px;
}
.login .form__submit-btn {
  margin-top: 15px;
  width: 100%;
  height: 36px;
  border-radius: 4px;
  background-color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  color: #21270E;
  cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .login.three .login-box {
    padding: 30px;
  }
  .login.three .login-box h2 {
    font-size: 1.5rem;
  }
  .login.three .input-box input {
    font-size: 0.8rem;
  }
}
@media (max-width: 576px) {
  .login.three {
    height: auto;
    padding: 20px 0;
  }
  .login.three .login-box {
    width: 95%;
    padding: 20px;
  }
  .login.three .login-box h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .login.three .input-box {
    margin-bottom: 20px;
  }
  .login.three .input-box input {
    font-size: 0.75rem;
    padding: 10px;
  }
  button {
    font-size: 0.75rem;
    padding: 10px;
  }
}/*# sourceMappingURL=loginDesign3.css.map */