/* Lexon Registration Custom Styles */

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doc-card {
    animation: slideIn 0.3s ease-out forwards;
}

.doc-card:nth-child(1) { animation-delay: 0.1s; }
.doc-card:nth-child(2) { animation-delay: 0.2s; }
.doc-card:nth-child(3) { animation-delay: 0.3s; }
.doc-card:nth-child(4) { animation-delay: 0.4s; }

/* File Input Overlay */
.file-input {
    font-size: 0;
}

/* Scrollbar hiding for progress on mobile */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom shadow hover transition */
.hover\:shadow-hover:hover {
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
}
