.login-overlay {
  display: none;
}

.login-page {
  width: 100%;
  max-width: 732px;
  margin: 0 auto;
  /* padding: 20px; */
  min-height: 0;
  box-sizing: border-box;
  overflow-y: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* background: #fff; */
}

.login-container {
  /* margin-top: 0; */
  width: 100%;
  /* max-width: 420px; */
  background: var(--bg-primary);
  /* border-radius: 12px; */
  padding: 36px 28px 28px 28px;
  /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10); */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background: #ebebeb; */
}

.login-header {
  margin-bottom: 18px;
  width: 100%;
}

.login-back-arrow {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  left: 53px;
  top: 130px;
  cursor: pointer;
  /* color: #222; */
}

.login-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
color: var(--txt-primary);
  text-align: center;
  font-family: Outfit;
  font-size: 29px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.32px;
  text-transform: uppercase;
}
.login-page-wrapper{
  width: 65%;
}
.login-description {
  font-size: 1rem;
  color: var(--txt-primary);
  line-height: 1.5;
  margin-bottom: 18px;
  text-align: center;
  color: var(--txt-primary);
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.login-form {
  width: 100%;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-input {
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  margin: 0 auto 18px auto;
  border: 1.5px solid #d6d6d6;
  border-radius: 7px;
  font-size: 1.08rem;
  /* background: #f7f7f7; */
  color: var(--txt-primary);
  text-align: center;
  font-weight: 500;
}

.login-button.main-green-btn {
  width: 100%;
  max-width: 320px;
  padding: 16px 0;
  background: linear-gradient(180deg, #4caf50 0%, #2e9c3a 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 18px;
  box-shadow: 0 4px 0 #1e7c2a;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.login-button.main-green-btn:active {
  background: linear-gradient(180deg, #2e9c3a 0%, #4caf50 100%);
}

.login-error {
  color: #e74c3c;
  font-size: 1rem;
  margin-bottom: 10px;
}

.login-social {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto 10px auto;
}

.social-button {
  width: 100%;
  padding: 12px 0;
  border: 1.5px solid #d6d6d6;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  color:var(--txt-primart);
  transition: background 0.2s, border 0.2s;
}

.social-button.google {
  background: var(--bg-primary);
  color:var(--txt-primary);
}

.social-button.facebook {
   background: var(--bg-primary);
  color:var(--txt-primary);
}

.social-button .google-icon {
  font-size: 1.3rem;
  margin-right: 10px;
  color: #ea4335;
  font-weight: 700;
}

.social-button .facebook-icon {
  font-size: 1.3rem;
  margin-right: 10px;
  color: #1877f2;
  font-weight: 700;
}

.login-footer {
  margin-top: 18px;
  font-size: 0.95rem;
   color: var(--txt-secondary);
  text-align: center;
}

.privacy-link {
  color: #4caf50;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 600px) {
  .login-page {
    max-width: 100vw;
    /* padding: 8px 0; */
  }

  .login-container {
    width: 98vw;
    min-width: 0;
    padding: 18px 4vw;
  }

  .login-back-arrow {
    left: 20px;
    top: 119px;
  }
}



@media (max-width: 480px) {
  .login-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-top: 30px;
  }

  .login-description {
    font-size: 14px;
    font-weight: 500;
  }

  .social-button {
    margin-top: 6px;
  }
  .login-footer {
    margin-top: 2px;
    font-size: 14px;
}
.login-page-wrapper{
  width: 80%;
}
}