.auth-open {
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.auth-modal {
  position: sticky;
  bottom: 20%;
  display: none;
  align-items: center;
  justify-content: center;
 /* background: rgba(5,5,12,.72);
  backdrop-filter: blur(10px);*/
  z-index: 99999;
}

.recovery-modal {
  position: sticky;
  bottom: 20%;
  display: none;
  align-items: center;
  justify-content: center;
 /* background: rgba(5,5,12,.72);
  backdrop-filter: blur(10px);*/
  z-index: 99999;
}
.auth-modal.active {
  display: flex;
}

.recovery-modal.active {
  display: flex;
}

.recovery-box {
  width: min(420px, 92vw);
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg,rgba(25,25,45,.96),rgba(10,10,20,.98));
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
}

.recovery-close {
  position: absolute;
  top: 0;
  right: 5px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.auth-box {
  width: min(420px, 92vw);
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg,rgba(25,25,45,.96),rgba(10,10,20,.98));
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
}

.recovery-box {
  width: min(420px, 92vw);
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg,rgba(25,25,45,.96),rgba(10,10,20,.98));
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
}
.auth-close {
  position: absolute;
  top: 0;
  right: 5px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.auth-tabs button {
  flex: 1;
  padding: 12px;
  border: 0;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}

.auth-tabs button.active {
  background: linear-gradient(135deg,#ff2d75,#7c3cff);
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.recovery-form {
  display: block;
  flex-direction: column;
  gap: 14px;
}

.auth-form.active {
  display: flex;
}
.recovery-form.active {
  display: flex;
}

.auth-form input {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  outline: none;
}
.recovery-form input {
  padding: 14px 16px;
  margin: 2px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  outline: none;
}

.auth-form input::placeholder {
  color: rgba(255,255,255,.65);
}
.recovery-form input::placeholder {
  color: rgba(255,255,255,.65);
}

.auth-form button[type="submit"] {
  padding: 14px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg,#ff2d75,#7c3cff);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.recovery-form button[type="submit"] {
  padding: 14px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg,#ff2d75,#7c3cff);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.auth-form a {
  color: #ff8fbd;
  text-align: center;
  text-decoration: none;
}
.recovery-form a {
  color: #ff8fbd;
  text-align: center;
  text-decoration: none;
}
.auth-check {
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.4;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 190px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  overflow: hidden;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #111;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f3f3f3;
}

.dropdown:hover .dropdown-menu {
  display: block;
}