#loginApp {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}

.close-btn {
  text-align: right;
}

#close-btn {
  cursor: pointer;
}

.login-form {
  background: white;
  padding:0 40px 40px;
  border-radius: 5px;
  min-width: 440px;
  max-width: 520px;
  margin: auto;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.login-form h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2a3860;
}

.login-form p {
  font-size: 14px;
  color: #555;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"] {
  width: 100%;
  padding: 15px !important;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 15px;
}

.login-forgot {
  text-align: right;
  margin-top: 8px;
}

.login-forgot a {
  font-size: 13px;
  color: #fd7f23;
  text-decoration: none;
}

.login-forgot a:hover {
  text-decoration: underline;
}

.login-form .btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #fd7f23;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 12px 0;
}

.login-form .btn:active {
  background-color: #00266b;
  color: #fff;
  opacity: 0.8;
}

.login-form .social-icons .btn {
  width: auto;
  padding: 0;
  background: #fff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  transition: opacity 0.3s linear;
}

.login-form .social-icons .btn img {
  max-width: 40px;
}

.login-form .social-icons .btn:hover {
  opacity: 0.8;
}

.login-form hr {
  margin: 25px 0;
}

.text-center {
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-facebook {
  background-color: #1877f2;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.legal {
  font-size: 12px;
  color: #666;
  margin-top: 20px;
}

.login-form .legal a {
  text-decoration: underline;
  color: blue !important;
}

#otp-countdown {
  font-size: 12px;
  color: #666;
  display: none;
  margin-top: 15px;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

/* .password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
  padding-right: 44px !important;
} */

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  color: #6c757d;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:focus {
  outline: none;
}

.password-toggle i {
  pointer-events: none;
}

/* .password-wrapper input::-ms-clear, */
/* .password-wrapper input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.password-wrapper input::-webkit-textfield-decoration-container {
  display: none !important;
} */