 

/* body.dark-mode {
  
  --hero-bg: #0f0f0f;
  --hero-text: #ffffff;
  --hero-text2: #238481;
  --hero-subtext: #bbbbbb;
  --hero-tag-bg: #1c1c1c;
  --hero-border: #333333;
  --hero-btn-primary-bg: #FF7434;
  --hero-btn-primary-hover: #ff8d58;
  --hero-btn-outline-border: #444444;
  --hero-img-bg: #222222;
} */

/* body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark), #000);
    color: var(--text-dark);
    overflow: hidden;
    transition: all 0.5s ease;
  }

  body.light {
    background: linear-gradient(135deg, var(--bg-light), #fff);
    color: var(--text-light);
  } */
  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px; /* space between checkbox and text */
    font-size: 0.95rem;
    cursor: pointer;
}

.toggle-password {
  pointer-events: auto !important;
  cursor: pointer;
}


.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
}


.login-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 120px;
}

.blur-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse 8s infinite ease-in-out;
  z-index: 0;
}

.circle-purple {
  background: var(--primary1);
  top: -80px;
  right: -100px;
}

.circle-pink {
  background: var(--secondary2);
  bottom: -80px;
  left: -100px;
  animation-delay: 2s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.login-card {
  position: relative;
  z-index: 1;
  width: 500px;
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(var(--card-dark), var(--card-dark)) padding-box,
    linear-gradient(145deg, transparent 35%, var(--primary1), var(--secondary2)) border-box;
  border: 2px solid transparent;
  background-size: 200% 100%;
  animation: gradient-border 5s ease infinite;
  /* box-shadow: 0 0 40px rgba(0, 0, 0, 0.3); */
  transition: all 0.5s ease;
  color: var(--primary1);
  margin-inline: 20px;
}

body.light .login-card {
  background: linear-gradient(var(--card-light), var(--card-light)) padding-box,
    linear-gradient(145deg, transparent 35%, var(--primary1), var(--secondary2)) border-box;
  color: var(--text-light);
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); */
}

@keyframes gradient-border {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

h1 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 400;
}

p {
  text-align: center;
  color: #999;
  margin-bottom: 2rem;
}

label {
  display: flex;
  margin-bottom: 0.3rem;
  color: #717171;
  font-size: 0.8rem;
  align-items: center;
  white-space: nowrap;
}

input {
  width: 100%;
  padding: 0.8rem 0.8rem 0.8rem 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--text-dark);
  outline: none;
  transition: all 0.3s ease;
  margin-right: 8px;
}

input:focus {
  border-color: var(--primary1);
}

body.light input {
  border-color: var(--border-light);
  color: var(--text-light);
}

.input-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;

  color: gray;
  pointer-events: none;
}

.field {
  position: relative;
  margin-bottom: 1.5rem;


}

.options {
  display: flex;
  justify-content: space-between;

  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}




.btn {
  width: 100%;
  padding: 0.8rem;
  background: var(--primary1);
  /* border: 1px solid #414141; */
  color: var(--text-dark);
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--secondary2);
  color: var(--text-dark);
  
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid #333;
}

.divider span {
  margin: 0 1rem;
  color: #777;
  font-size: 0.8rem;
}

.socials {
  display: flex;
  gap: 1rem;
  color: var(--bg-dark);
}

.socials button {
  flex: 1;
  padding: 0.8rem;
  

  
  background: var(--speed-bg);
  border: 1px solid var(--speed-border);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.socials button:hover {
  background: var(--speed-border);
}

.toggle-theme {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 2px solid var(--primary1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--primary1);
  font-weight: bold;
  transition: all 0.3s ease;
}

.toggle-theme:hover {
  background: var(--primary1);
  color: #fff;
}

.footer-text {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #aaa;
}

a {
  color: var(--primary1);
  text-decoration: none;
}

a:hover {
  color: var(--secondary2);
}


.speedLogin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-dark) !important;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.speedLogin:hover {
  transform: translateY(-2px);
}

i {
  font-size: 1.2em;
}

