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

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

.login {
  /* Media queries for responsiveness */
}
.login.six {
  font-family: "Segoe UI", sans-serif;
  background: var(--lightbg);
  color: var(--darkclr);
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.login.six .login-wrapper {
  z-index: 11;
}
.login.six .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.login.six .bubbles .bubble {
  position: absolute;
  bottom: -100px;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
}
.login.six .bubbles .bubble:nth-child(1) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.login.six .bubbles .bubble:nth-child(2) {
  left: 20%;
  width: 30px;
  height: 30px;
  animation-delay: 2s;
}
.login.six .bubbles .bubble:nth-child(3) {
  left: 30%;
  width: 15px;
  height: 15px;
  animation-delay: 4s;
}
.login.six .bubbles .bubble:nth-child(4) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 1s;
}
.login.six .bubbles .bubble:nth-child(5) {
  left: 65%;
  width: 18px;
  height: 18px;
  animation-delay: 3s;
}
.login.six .bubbles .bubble:nth-child(6) {
  left: 80%;
  width: 22px;
  height: 22px;
  animation-delay: 5s;
}
.login.six .bubbles .bubble:nth-child(7) {
  left: 90%;
  width: 14px;
  height: 14px;
  animation-delay: 6s;
}
@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-110vh) scale(0.5);
    opacity: 0;
  }
}
.login.six .circuit-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.login.six .circuit-lines .line {
  position: absolute;
  background: var(--lineclr);
  box-shadow: 0 0 10px rgba(147, 197, 253, 0.5333333333);
}
.login.six .circuit-lines .line.h {
  height: 2px;
}
.login.six .circuit-lines .line.v {
  width: 2px;
}
.login.six .circuit-lines .line.line1 {
  top: 20%;
  left: 10%;
  width: 200px;
}
.login.six .circuit-lines .line.line2 {
  top: 50%;
  left: 60%;
  width: 180px;
}
.login.six .circuit-lines .line.line3 {
  top: 80%;
  left: 20%;
  width: 150px;
}
.login.six .circuit-lines .line.line4 {
  top: 20%;
  left: 30%;
  height: 100px;
}
.login.six .circuit-lines .line.line5 {
  top: 40%;
  left: 75%;
  height: 120px;
}
.login.six .circuit-lines .line.line6 {
  top: 65%;
  left: 40%;
  height: 140px;
}
.login.six .circuit-lines .circle {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--lineclr);
  border-radius: 50%;
  box-shadow: 0 0 15px #3b82f6, 0 0 30px #3b82f6;
  animation: pulse 2s infinite;
}
.login.six .circuit-lines .circle.circle1 {
  top: 20%;
  left: 10%;
}
.login.six .circuit-lines .circle.circle2 {
  top: 50%;
  left: 60%;
}
.login.six .circuit-lines .circle.circle3 {
  top: 80%;
  left: 20%;
}
.login.six .circuit-lines .circle.circle4 {
  top: 40%;
  left: 75%;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}
.login.six .login-container {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #cbd5e1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  z-index: 2;
  animation: fadeIn 1.2s ease forwards;
}
.login.six .login-container .inner-box {
  background: var(--plainclr);
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.05);
}
.login.six .login-container .inner-box .login-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 25px;
  color: var(--darkclr);
  font-weight: bold;
}
.login.six .login-container .inner-box input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: var(--lightbg);
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  color: var(--darkclr);
  font-size: 15px;
  transition: 0.3s ease;
}
.login.six .login-container .inner-box input:focus {
  outline: none;
  border-color: var(--lineclr);
  background: var(--plainclr);
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.5333333333);
}
.login.six .login-container .inner-box .btn-login {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #60a5fa, #2563eb);
  color: var(--plainclr);
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.login.six .login-container .inner-box .btn-login:hover {
  box-shadow: 0 0 10px #60a5fa, 0 0 20px #2563eb;
  transform: scale(1.02);
}
.login.six .login-container .inner-box .login-footer {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: var(--);
}
.login.six .login-container .inner-box .login-footer a {
  color: var(--lineclr);
  text-decoration: none;
  font-size: 13px;
}
.login.six .login-container .inner-box .login-footer a:hover {
  text-decoration: underline;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.login a:hover,
.login button:hover {
  opacity: 0.8;
}
.login a {
  color: inherit;
}
@media (max-width: 1200px) {
  .login .login-container {
    max-width: 380px;
  }
  .login .inner-box {
    padding: 30px 25px;
  }
  .login .login-title {
    font-size: 20px;
  }
  .login input {
    font-size: 14px;
  }
  .login .btn-login {
    font-size: 15px;
    padding: 10px;
  }
}
@media (max-width: 992px) {
  .login .login-container {
    max-width: 350px;
  }
  .login .inner-box {
    padding: 25px 20px;
  }
  .login .login-title {
    font-size: 18px;
  }
  .login input {
    font-size: 14px;
  }
  .login .btn-login {
    font-size: 15px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .login {
    height: auto;
    padding: 50px 20px;
  }
  .login .login-container {
    width: 90%;
    max-width: 320px;
  }
  .login .inner-box {
    padding: 20px 15px;
  }
  .login .login-title {
    font-size: 17px;
  }
  .login input {
    font-size: 13px;
    padding: 10px 14px;
  }
  .login .btn-login {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .login {
    padding: 30px 10px;
  }
  .login .login-container {
    width: 95%;
    max-width: 300px;
  }
  .login .inner-box {
    padding: 15px 12px;
  }
  .login .login-title {
    font-size: 16px;
  }
  .login input {
    font-size: 12px;
    padding: 8px 12px;
  }
  .login .btn-login {
    font-size: 13px;
    padding: 8px;
  }
}/*# sourceMappingURL=loginDesign6.css.map */