.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background: linear-gradient(135deg, #f9e0cc 0%, #fdf1e8 30%, #ffffff 60%, #fdf1e8 100%);
  position: relative;
  overflow: hidden;
}

/* Orange decorative circles */
.login-page::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 120px solid var(--accent);
  top: -300px;
  left: -300px;
  opacity: 0.9;
}

.login-page::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 80px solid var(--accent);
  bottom: -200px;
  right: -200px;
  opacity: 0.3;
}

.login-box {
  background: var(--bg-surface);
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.login-box h1 {
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 600;
}

.login-box .subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 13px;
}

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

.login-box .form-group label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.login-box input {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 4px;
}

.login-box .btn {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px;
  border-radius: 4px;
}

.login-error {
  background: var(--error-bg);
  color: var(--error-text);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
  border: 1px solid #ffccc7;
}

.login-error.visible { display: block; }
