:root {
  --bg: #0b0f14;
  --card: #0f1623;
  --border: #1f2937;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #3b82f6;
}

* {
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(1200px 600px at 50% -200px, #111827, #0b0f14);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.card {
  width: 100%;
  max-width: 380px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

h1 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: #020617;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
}

input::placeholder {
  color: var(--muted);
}

input:focus {
  outline: none;
  border-color: var(--accent);
}

button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

button.primary {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: white;
  margin-top: 8px;
}

button.link {
  background: none;
  color: var(--muted);
  margin-top: 10px;
}

button.link:hover {
  color: var(--text);
}

.logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.logo {
  height: 36px;
  z-index: 2;
}

.logo-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.06);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.dashboard-nav a {
  margin-left: 18px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.dashboard-nav a:hover {
  color: var(--text);
}

.calendar {
  background: linear-gradient(
    180deg,
    rgba(15, 22, 35, 0.9),
    rgba(2, 6, 23, 1)
  );
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.02);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 600;
}

.cal-btn {
  background: #020617;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 4px 10px;
  cursor: pointer;
}

.cal-btn:hover {
  border-color: var(--accent);
}


