:root {
  --primary: #9d4edd;
  --secondary: #5a189a;
  --bg-color: #10002b;
  --bg-card: #240046;
  --text-main: #e0aaff;
  --text-muted: #c77dff;
  --border: #3c096c;
  --success: #0bc938;
  --danger: #d90429;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1, h2, h3 { color: #fff; }
#content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.auth-container {
  max-width: 400px;
  width: 100%;
  margin: auto;
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
}
.auth-container h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
}
.auth-container form div {
  margin-bottom: 1.5rem;
}
.auth-container label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.auth-container input {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(0,0,0,0.2);
  color: #fff;
  box-sizing: border-box;
  font-size: 1rem;
}
.auth-container input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(157, 78, 221, 0.3);
}
.auth-container button {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 1rem;
}
.auth-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4);
}
.dashboard-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-card {
  max-width: 800px;
  width: 100%;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.dashboard-card h2 { margin-top: 0; }
.dashboard-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.dashboard-card li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}
.dashboard-card li a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4);
}
