:root {
  --auth-bg: #0a1810;
  --auth-surface: rgba(255, 255, 255, 0.03);
  --auth-primary: #1a5f3f;
  --auth-accent: #d4af37;
  --auth-text: #faf9f6;
  --auth-text-dim: rgba(250, 249, 246, 0.6);
  --auth-error: #ff5252;
  --glass-blur: blur(24px);
  --border-radius: 12px;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-card {
  background: var(--auth-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  width: 100%;
  max-width: 420px;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--auth-text);
}

.auth-header p {
  color: var(--auth-text-dim);
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--auth-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--auth-text);
  font-size: 15px;
  transition: all 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--auth-primary);
  background: rgba(255,255,255,0.08);
}

.auth-btn {
  width: 100%;
  background: var(--auth-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(26, 95, 63, 0.2);
}

.auth-btn:hover {
  background: #1e6d49;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 95, 63, 0.3);
}

.auth-btn:active {
  transform: translateY(0);
}

.auth-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.auth-btn-secondary {
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--auth-text);
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--auth-text-dim);
}

.auth-footer a {
  color: var(--auth-primary);
  text-decoration: none;
  font-weight: 600;
}

/* User Profile Styles */
.profile-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.profile-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.user-avatar {
  background: var(--auth-primary);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
}

.profile-card {
  background: var(--auth-surface);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.profile-card h2 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--auth-text);
  font-weight: 600;
}

.profile-sidebar-cards {
  display: flex;
  flex-direction: column;
}

.profile-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--auth-text-dim);
  font-size: 15px;
}

.profile-stat-item i {
  font-size: 20px;
  color: var(--auth-primary);
}

@media (max-width: 900px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

.admin-theme {
  --auth-primary: #ff5252;
}
