﻿body {
    .animated-fade

{
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

    .scroll-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .scroll-wrapper::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 4px;
    }
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.form-body {
    height: 100%;
}

.iofrm-layout {
    min-height: 100%;
    background-color: #f2f3f8; /* Replace with your desired background */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-holder,
.form-content,
.form-items {
    height: 100%;
}





