@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } } @keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } } .fade-in { animation: fadeIn 0.3s ease-out; } .drag-over { background-color: rgba(59, 130, 246, 0.1); border-color: #3b82f6; } .progress-bar { transition: width 0.3s ease; } .unlock-button:hover { animation: pulse 0.3s ease-in-out; } .drop-zone { transition: all 0.3s ease; } .drop-zone:hover { border-color: #3b82f6; background-color: rgba(59, 130, 246, 0.05); } .spinner { border: 3px solid #f3f3f3; border-top: 3px solid #3b82f6; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* Smooth scroll behavior */ html { scroll-behavior: smooth; } /* Adjust main content padding */ main { padding-top: 2rem; padding-bottom: 2rem; } /* Toast notification */ .toast { position: fixed; bottom: 2rem; right: 2rem; background-color: #fff; border-radius: 0.5rem; padding: 1rem 1.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.1); display: flex; align-items: center; transform: translateY(150%); transition: transform 0.3s ease; z-index: 1000; } .toast.show { transform: translateY(0); } .toast.success { border-left: 4px solid #10b981; } .toast.error { border-left: 4px solid #ef4444; } .toast.warning { border-left: 4px solid #f59e0b; } .toast.info { border-left: 4px solid #3b82f6; } .toast i { margin-right: 0.75rem; font-size: 1.25rem; } .toast.success i { color: #10b981; } .toast.error i { color: #ef4444; } .toast.warning i { color: #f59e0b; } .toast.info i { color: #3b82f6; } /* Loader overlay */ .loader-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; } .loader-overlay.active { opacity: 1; visibility: visible; } /* Error message */ .error-message { background-color: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 1rem; border-radius: 0.5rem; margin-top: 1rem; } .shake { animation: shake 0.5s ease-in-out; } /* Password input styling */ .password-input { position: relative; } .password-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); cursor: pointer; color: #6b7280; } .password-toggle:hover { color: #3b82f6; } /* Success animation */ .success-checkmark { width: 80px; height: 80px; margin: 0 auto; } .success-checkmark svg { width: 100%; height: 100%; } .success-checkmark .check-icon { stroke-dasharray: 130; stroke-dashoffset: 130; animation: check 0.5s ease-in-out forwards; } @keyframes check { to { stroke-dashoffset: 0; } } /* Feature cards */ .feature-card { transition: all 0.3s ease; } .feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); } /* Debug info */ .debug-info { background-color: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 0.5rem; padding: 1rem; margin-top: 1rem; font-family: monospace; font-size: 0.875rem; }