@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

.r-pretty-login-page > .r-controls {
    background: #ffffff;
    border-radius: 22px 0px 0px 22px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}
.r-pretty-login-page{
    background: #f5f5f5;
    gap: 12px;
}
body{
    
      font-family: "Cairo", sans-serif;
}
@keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        .no-scrollbar {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://ik.imagekit.io/qhlpxbmaqg/WhatsApp%20Image%202026-01-06%20at%202.44.07%20PM.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.4;
            z-index: 0;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content.active {
            max-height: 500px;
        }