CoolFace
Apppublic

SBanonymous/securegate-portal

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
style.css32 linesDownload Raw Back to root
1/* Custom animations */2@keyframes fadeIn {3    from { opacity: 0; transform: translateY(10px); }4    to { opacity: 1; transform: translateY(0); }5}6 7/* Form animation */8#loginForm {9    animation: fadeIn 0.5s ease-out forwards;10}11 12/* Input focus effects */13input:focus {14    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);15}16/* Button hover effects */17button:hover {18    transform: translateY(-1px);19    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);20}21/* Form animations */22#registerForm,23#resetForm {24    animation: fadeIn 0.5s ease-out forwards;25}26/* Responsive adjustments */27@media (max-width: 640px) {28    .min-h-full {29        padding-top: 2rem;30        padding-bottom: 2rem;31    }32}