@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body.login-body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #000, #111);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  width: 92%;
  max-width: 420px;
  box-shadow: 0 12px 40px rgba(255, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,0,0,0.08);
}

.login-container h1 {
  color: #ff3b3b;
  margin-bottom: 0.3rem;
  font-size: 1.8rem;
}

.login-container p {
  opacity: 0.85;
  margin-bottom: 1rem;
}

input {
  width: 100%;
  padding: 0.85rem;
  border-radius: 10px;
  border: none;
  background: #0f0f10;
  color: #fff;
  margin-bottom: 1rem;
  outline: none;
}

input:focus {
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.25);
}

button {
  width: 100%;
  background: linear-gradient(90deg, #ff0000, #b30000);
  border: none;
  padding: 0.85rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,0,0,0.18); }

.switch-form {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.switch-form a { color: #ff3b3b; text-decoration: none; }
