@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1a002b, #2b0057);
  color: #e6e6e6;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(155, 92, 255, 0.3);
  text-align: center;
  width: 320px;
}

h2 {
  color: #d6b3ff;
  margin-bottom: 20px;
}

.input-group {
  text-align: left;
  margin-bottom: 15px;
}

label {
  font-size: 0.9em;
  color: #c5b1ff;
}

input[type="text"], input[type="password"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn {
  width: 100%;
  background: #7a34d3;
  border: none;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #9b5cff;
  box-shadow: 0 0 15px #9b5cff;
}

.error {
  background: rgba(255, 0, 76, 0.2);
  padding: 8px;
  border-radius: 6px;
  color: #ff5c93;
  font-size: 0.9em;
}

.hint {
  margin-top: 10px;
  font-size: 0.85em;
  color: #bfb1ff;
}
