﻿@import url('../node_modules/bootstrap-icons/font/bootstrap-icons.min.css');

/* تنسيقات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    height: 100vh;
    font-family: 'mohsen', sans-serif !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modern-btn {
    background: linear-gradient(270deg, #6865e8, #8a87ff, #a9a7ff, #6865e8);
    background-size: 300% 300%;
    border: none;
    color: #fff;
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: gradientMove 5s ease infinite;
}

/* Continuous gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
