/* styles.css */
:root {
  --primary: #4F46E5;
  --bg-color: #0F172A;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --card-bg: #1E293B;
  --border: #334155;
  --danger: #EF4444;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  flex: 1;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #818CF8, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #E2E8F0;
}

p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #4338CA;
  transform: translateY(-2px);
}

.btn-danger {
  background-color: var(--danger);
}

.btn-danger:hover {
  background-color: #DC2626;
}

.links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.links a {
  color: #818CF8;
  text-decoration: none;
  transition: color 0.2s;
}

.links a:hover {
  color: #A5B4FC;
  text-decoration: underline;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #E2E8F0;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px;
  background-color: #0F172A;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

ul {
  color: var(--text-muted);
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}
