:root {
  --bg: #0f1724;
  --panel: #0b1220;
  --muted: #98a0b3;
  --accent: #4f46e5;
  --glass: rgba(255,255,255,0.03);
  --radius: 12px;
  --shadow: 0 6px 18px rgba(2,6,23,0.6);
  --font: 'Quicksand', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, var(--bg), #07101a);
  color: #e6eef8;
  overflow: hidden;
}

.ring {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login {
  position: absolute;
  width: 320px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login h2 {
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 12px;
}

.login .inputBx input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #e6eef8;
  font-size: 1em;
  outline: none;
  transition: 0.3s;
}

.login .inputBx input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 10px rgba(79,70,229,0.4);
}

.login .inputBx input[type="button"] {
  background: linear-gradient(45deg, #4f46e5, #06b6d4);
  border: none;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.login .inputBx input[type="button"]:hover {
  filter: brightness(1.1);
}

.login .links {
  display: flex;
  justify-content: space-between;
  font-size: 0.85em;
}

.login .links a {
  color: var(--muted);
  text-decoration: none;
  transition: 0.3s;
}

.login .links a:hover {
  color: var(--accent);
}