/* activate.html styles */
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: #f5f5f5; padding: 20px; }
.container { max-width: 500px; margin: 0 auto; background: white; padding: 30px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
h1 { color: #503580; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 5px; font-weight: bold; }
input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 16px; box-sizing: border-box; }
input:focus { outline: none; border-color: #503580; }
.btn { background: #503580; color: white; padding: 14px 24px; border: none; border-radius: 8px; font-size: 16px; cursor: pointer; width: 100%; }
.btn:hover { background: #3d2860; }
.btn:disabled { background: #ccc; }
.message { padding: 12px; border-radius: 8px; margin-bottom: 20px; }
.error { background: #ffebee; color: #c62828; }
.success { background: #e8f5e9; color: #2e7d32; }
.otp-inputs { display: flex; gap: 10px; justify-content: center; }
.otp-inputs input { width: 50px; height: 50px; text-align: center; font-size: 24px; }
.hidden { display: none; }

/* forgot.html styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Noto Sans TC', sans-serif; background: linear-gradient(135deg, #8458b3 0%, #d0bdf4 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.container { background: white; border-radius: 20px; padding: 40px; width: 100%; max-width: 400px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
h1 { color: #8458b3; text-align: center; margin-bottom: 20px; font-size: 24px; }
p { color: #666; text-align: center; margin-bottom: 30px; line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: #494d5f; font-weight: 500; }
.form-group input { width: 100%; padding: 12px 15px; border: 2px solid #e5eaf5; border-radius: 10px; font-size: 16px; }
.btn { width: 100%; padding: 14px; background: #8458b3; color: white; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; }
.btn:hover { background: #6b4a8f; }
.links { text-align: center; margin-top: 20px; }
.links a { color: #8458b3; text-decoration: none; }
.message { padding: 12px; border-radius: 8px; margin-bottom: 20px; text-align: center; }
.message.error { background: #fee; color: #c00; }
.message.success { background: #efe; color: #060; }
