/* Redirect Landing Pages Stylesheet */ /* For Relevant Reflex Survey Completion Pages */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: #333; min-height: 100vh; } .page-container { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; position: relative; overflow: hidden; } /* Animated background elements */ .page-container::before, .page-container::after { content: ''; position: absolute; border-radius: 50%; opacity: 0.1; animation: float 20s infinite ease-in-out; } .page-container::before { width: 400px; height: 400px; background: white; top: -100px; left: -100px; } .page-container::after { width: 300px; height: 300px; background: white; bottom: -50px; right: -50px; animation-delay: 10s; } @keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(50px, 50px) scale(1.1); } } .content-card { background: white; border-radius: 20px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); max-width: 600px; width: 100%; padding: 50px 40px; text-align: center; position: relative; z-index: 1; animation: slideUp 0.6s ease-out; } @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .icon-circle { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 30px; display: flex; align-items: center; justify-content: center; animation: scaleIn 0.8s ease-out; } @keyframes scaleIn { 0% { transform: scale(0); opacity: 0; } 50% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } } .icon-circle.success { background: linear-gradient(135deg, #28a745, #20c997); } .icon-circle.partial { background: linear-gradient(135deg, #0066cc, #0052a3); } .icon-circle.screenout { background: linear-gradient(135deg, #dc2626, #991b1b); } .icon-circle.warning { background: linear-gradient(135deg, #f59e0b, #d97706); } .icon-circle.timeout { background: linear-gradient(135deg, #6b7280, #4b5563); } .icon-circle.quota { background: linear-gradient(135deg, #ec4899, #be185d); } .icon { font-size: 60px; color: white; line-height: 1; } .page-heading { font-size: 32px; font-weight: 700; color: #111827; margin-bottom: 20px; } .main-message { font-size: 18px; color: #6b7280; line-height: 1.8; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; } .points-box { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); border-radius: 16px; padding: 30px; margin: 30px 0; color: white; animation: pulse 2s ease-in-out infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } } .points-label { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; margin-bottom: 10px; } .points-amount { font-size: 48px; font-weight: 800; margin: 10px 0; } .points-sublabel { font-size: 14px; opacity: 0.9; } .info-box { background: #f3f4f6; border-radius: 12px; padding: 25px; margin: 30px 0; text-align: left; } .info-box h3 { font-size: 18px; font-weight: 600; color: #111827; margin-bottom: 12px; } .info-box p { font-size: 15px; color: #6b7280; line-height: 1.6; } .info-grid { background: #f9fafb; border-radius: 12px; padding: 20px; margin: 30px 0; } .info-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #e5e7eb; } .info-item:last-child { border-bottom: none; } .info-label { font-size: 14px; color: #6b7280; } .info-value { font-size: 14px; font-weight: 600; color: #111827; } .action-buttons { display: flex; gap: 12px; margin: 30px 0; flex-wrap: wrap; justify-content: center; } .btn { display: inline-block; padding: 14px 28px; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; } .btn-primary { background: #0066cc; color: white; } .btn-primary:hover { background: #0052a3; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3); } .btn-secondary { background: #f3f4f6; color: #374151; } .btn-secondary:hover { background: #e5e7eb; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); } .footer-note { margin-top: 30px; padding-top: 25px; border-top: 2px solid #e5e7eb; } .footer-note p { font-size: 14px; color: #6b7280; line-height: 1.6; } .branding { position: relative; z-index: 1; margin-top: 30px; color: white; text-align: center; } .branding .logo { height: 40px; margin-bottom: 10px; opacity: 0.9; } .branding p { font-size: 14px; opacity: 0.8; font-weight: 500; } /* Mobile Responsive */ @media (max-width: 768px) { .content-card { padding: 40px 30px; } .page-heading { font-size: 26px; } .main-message { font-size: 16px; } .icon-circle { width: 100px; height: 100px; } .icon { font-size: 50px; } .points-amount { font-size: 40px; } .action-buttons { flex-direction: column; } .btn { width: 100%; } } @media (max-width: 480px) { .content-card { padding: 30px 20px; } .page-heading { font-size: 22px; } .points-box { padding: 20px; } .points-amount { font-size: 36px; } }