﻿html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: byekan;
    margin-bottom: 60px;
    direction: rtl;
}
@font-face {
    font-family: 'byekan';
    src: url('../fonts/byekan.woff2') format('woff2');
}
@media (min-width: 576px) {
    .h-sm-100 {
        height: 100%;
    }
}
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* رنگ متحرک */
    z-index: 9999; /* بالاترین لایه */
    opacity: 0; /* اضافه کردن این خط */
    pointer-events: none; /* غیرفعال کردن امکان کلیک بر روی پس‌زمینه */
}

/* انیمیشن متحرک */
@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}

/* انیمیشن بک‌گراند */
/*.animated-background {
    animation: moveBackground 60s linear infinite alternate;*/
/*background: linear-gradient(to right, #f6f6f6, #f0f0f0, #f6f6f6);*/ /* تغییر رنگ‌ها */
/*background-image: linear-gradient(to right, #f6f6f6, #f0f0f0, #f6f6f6);*/ /* تصویر پس زمینه متحرک */
/*animation: moveBackground 20s linear infinite alternate;
    background-image: url('animated-background.gif');*/ /* مسیر تصویر پس زمینه متحرک */
/*}*/

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInForm {
    animation: fadeInForm 1s ease forwards;
}
