* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;

  min-height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;

  position: relative;

  background: #111;
}

.login-bg {
  position: absolute;

  inset: 0;

  background: url("../img/hero.webp") center center/cover no-repeat;

  transform: scale(1.05);
}

.login-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  backdrop-filter: blur(6px);
}

.login-card {
  position: relative;

  z-index: 2;

  width: 90%;

  max-width: 420px;

  padding: 40px;

  border-radius: 24px;

  background: rgba(20, 20, 20, 0.88);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.login-card h1 {
  color: #fff;

  text-align: center;

  font-size: 30px;

  margin-bottom: 10px;
}

.login-card p {
  text-align: center;

  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 35px;

  line-height: 1.6;
}

.login-card input {
  width: 100%;

  margin-bottom: 18px;

  border: none;

  outline: none;

  padding: 16px;

  border-radius: 14px;

  background: #222;

  color: white;

  font-size: 15px;
}

.login-card input::placeholder {
  color: #aaa;
}

.login-card button {
  width: 100%;

  border: none;

  cursor: pointer;

  padding: 16px;

  border-radius: 14px;

  background: #d8b36a;

  color: #111;

  font-weight: 600;

  font-size: 16px;

  transition: 0.3s;
}

.login-card button:hover {
  transform: translateY(-2px);

  background: #e6c27a;
}

.login-error {
  background: #9b1d1d;

  color: white;

  padding: 12px;

  border-radius: 10px;

  text-align: center;

  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .login-card {
    padding: 30px 24px;
  }
}

.setup-success {
  text-align: center;

  color: #fff;

  font-size: 22px;

  font-weight: 500;

  padding: 30px 10px;

  line-height: 1.5;
}
