

/* Login Box */
.login-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 40px 30px;
  width: 320px;
  max-width: 95%;
  text-align: center;
  color: #222;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeIn 0.8s ease;
  cursor: move;
  user-select: none;
  z-index: 1000;
}

#registerBox {
  width: 420px;

}

.login-box h2 {
  margin-bottom: 25px;
  color: #000;
  font-weight: 600;
}

.input-box {
  position: relative;
  margin-bottom: 20px;
}

.input-box input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.input-box i {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #333;
}

.options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 20px;
}

.options a {
  text-decoration: none;
  color: #000;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: #0e0e0e;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.login-btn:hover {
  background: #1e1e1e;
}

.login-box p {
  margin-top: 15px;
  font-size: 13px;
  color: #222;
}

.login-box a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.1);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: #000;
}

footer {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 13px;
}

footer .social {
  margin-top: 8px;
}

footer .social a {
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
  font-size: 16px;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

