.login-page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 60%);
  padding: 20px;
}

.login-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(164, 143, 255, 0.1);
  animation: fadeIn 1s ease forwards;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1c1c1c;
  color: white;
  font-size: 1rem;
  transition: 0.3s;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

input:focus {
  outline: none;
  background: #2a2a2a;
  border-color: #a48fff;
  box-shadow: 0 0 5px rgba(164, 143, 255, 0.4);
}


.super-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #8e78ff, #b2a4ff, #ffffff);
  color: #0f0f0f;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 6px 12px rgba(164, 143, 255, 0.3),
    0 3px 6px rgba(164, 143, 255, 0.2);
  transition: all 0.25s ease;
}

.super-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 10px 20px rgba(164, 143, 255, 0.4),
    0 4px 8px rgba(164, 143, 255, 0.25);
}