body {
    background: #333;

}

/* برمجة صفحة indix */

/* صورة الخلفية */
.Iimage {

    width: 100%;
    height: 100%;

    text-align: right;
    background-position: center;

    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}



/* إنميشن بداية تشغيل التطبيق */

/* إنميشن صورة الخلفية */
.logo {

    animation: StartImage 2s 1;
    position: absolute;
    background: rgba(0, 0, 0, 0.8);

    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

/* الإنميشن شخصيا ^_^ */
@keyframes StartImage {
    0% {
        background: rgba(0, 0, 0, 1);
    }

    25% {
        background: rgba(0, 0, 0, 1);
    }


    50% {
        background: rgba(0, 0, 0, 0.0);
    }


    100% {
        background: rgba(0, 0, 0, 0.8);
    }
}

.IText {

    animation: IText 2s ease-in-out forwards;
    animation-delay: 2s;
    position: absolute;
    color: rgba(255, 255, 255, 0);

    padding: 1% 0%;
    /* 5% من ارتفاع العنصر و 10% من عرضه */
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);


}

/* الإنميشن شخصيا ^_^ */
@keyframes IText {

    0% {
        color: rgba(255, 255, 255, 0);
        background-color: rgba(150, 150, 150, 0);
    }

    75% {
        border: 0px solid black;
        color: rgba(212, 175, 55, 1);
        background-color: rgba(150, 150, 150, 0.4);
    }

    88% {
        border-bottom: 50px solid gold;
        border-top: 50px solid gold;
        background-color: rgba(150, 150, 150, 0.4);
        height: 100px;
    }

    94% {
        color: rgba(212, 175, 55, 0);
    }

    100% {
        border-bottom: 0px solid gold;
        border-top: 0px solid gold;
        background-color: rgba(150, 150, 150, 0);
        height: 0px;
    }
}


/* صفحة تسجيل الدخول */



.ImageLog {
    background-image: url('img/icon.png');
    /* رابط الصورة الخلفية */
    filter: brightness(20%);
    /* تعتيم الصورة بنسبة 75% */

    background-size: 100% 100%;
    /* جعل الصورة تتكيف تماماً مع حجم العنصر */
    background-position: center;
    /* وضع الصورة في الوسط */
    background-repeat: no-repeat;
    /* عدم تكرار الصورة */
    width: 100%;
    /* العرض المطلوب للعنصر */
    height: 100%;
    /* الارتفاع المطلوب للعنصر */
    /* وضع العنصر في الوسط العمودي والأفقي */
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    /* تحويل العنصر بنسبة 50% في الاتجاه الأفقي والعمودي لتوسيطه */
    position: absolute;
    /* جعل العنصر موضوعًا بشكل مطلق بالنسبة للعنصر الأب المقترن به */

    animation: enterlog1 1s ease-in-out forwards;

}



@keyframes enterlog1 {

    0% {
        width: 100%;
        /* العرض المطلوب للعنصر */
        height: 100%;
        /* الارتفاع المطلوب للعنصر */
    }

    100% {
        width: 350px;
        /* العرض المطلوب للعنصر */
        height: 350px;
        /* الارتفاع المطلوب للعنصر */
        border-radius: 20px;

        filter: brightness(100%);
        /* تعتيم الصورة بنسبة 75% */


        box-shadow: -5px -5px 15px #444, 5px 5px 15px #222, inset 5px 5px 10px #444, inset -5px -5px 10px #222;
    }
}

.textdiv {
            opacity: 0;
    cursor: context-menu;
    font-size: 30px;
    text-align: center;
    border-radius: 10px;
    width: 250px;
    height: 50px;
    color: white;
    background: rgba(212, 175, 55, 0.7);
    vertical-align: middle;
    /* يوسط النص داخل العنصر عمودياً */
    line-height: 50px;
    /* يجعل النص في منتصف العنصر عمودياً */
    box-shadow: -5px -5px 15px #dbbc57, 5px 5px 15px #a88924, inset 5px 5px 10px #dbbc57, inset -5px -5px 10px #a88924;
    animation: enterlog2 0.4s ease-in-out forwards;
        animation-delay: 1s;

}

.UseBssDiv {
            opacity: 0;
    font-size: 30px;
    text-align: center;
    border-radius: 10px;
    border: 0.01px solid;
    width: 250px;
    height: 50px;
    color: white;
    background: rgba(51, 51, 51, 0.7);
    border-color: darkgoldenrod;
    box-shadow: -5px -5px 15px #444, 5px 5px 15px #222, inset 5px 5px 10px #444, inset -5px -5px 10px #222;
    animation: enterlog2 0.4s ease-in-out forwards;
        animation-delay: 1s;

}

.UseBssDiv::placeholder {
    color: red;
    /* لون النص التالفة */
}



.centerDiv {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

@keyframes enterlog2 {

    0% {
        opacity: 0;
    }

    /* بداية الإنميشن: العنصر غير مرئي */
    100% {
        opacity: 1;
    }

    /* نهاية الإنميشن: العنصر مرئي بالكامل */
}


.gg {
    
    
        background-image: url('img/lookwithe.png');
    /* رابط الصورة الخلفية */

    background-size: cover;
    /* جعل الصورة تتكيف تماماً مع حجم العنصر */
    background-position: center;
    /* وضع الصورة في الوسط */
    background-repeat: no-repeat;
    top: 94%;
    left: -37%;
    
        width: 250px;
    height: 250px;

    
    transform: translate(-50%, -50%);
    position: absolute;
}




























