/* Styles shared by success and error pages */
body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #f4f6f9; font-family: sans-serif; margin: 0; }
.card { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); text-align: center; }
.success { color: #04844b; font-size: 2rem; margin-bottom: 1rem; }
.error { color: #a12020; font-size: 2rem; margin-bottom: 1rem; }

/* Slightly different background for error page */
body.error { background: #fff6f6; }
