﻿@font-face {
    font-family: 'Anjoman-Bold';
    src: url(../Anjoman/AnjomanFaNum-SemiBold.woff)
}

body {
    font-family: Anjoman-Bold, Arial, Helvetica, sans-serif;
    padding-right: 20px;
    padding-left: 20px;
    direction: rtl;
    background: linear-gradient(139deg, #0958b1 5%, #cdc3cd94, #0498a9 95%);
    display: flex;
    margin: 0;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-repeat:no-repeat;
}

.box {
    
    width: 400px;
    border-radius: 30px;
    background-color: white;
    height: 300px;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    padding: 30px;
    box-shadow: 0 0 8px #80808061;
    color: white;
    font-weight: bold;
    margin-top:20px;
}

    .box .logo {
        width: 100px;
        height: 100px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        box-shadow: 0 0 10px #808080cf;
    }

    .box label {
        display: block;
        margin-bottom: 10px;
    }

    .box .link-btn {
        background-color: #006ae1;
        border-radius: 20px;
        width: 50%;
        height: 45px;
        text-align: center;
        display: inline-block;
        font-weight: bold;
        text-decoration: none;
        color: white;
        line-height: 45px;
        margin-top: 15px;
        box-shadow: 0 0 10px #808080cf;
    }

    .box.instagram {
        background: linear-gradient(139deg, #6228d7, #ee2a7b,#f9ce34);
    }

        .box.instagram .logo {
            border-radius: 25px;
        }

    .box.telegram {
        background: linear-gradient(139deg, #229ED9, #2aabee2b);
    }

        .box.telegram .logo {
            border-radius: 50%;
        }

    .box.eitaa {
        background: linear-gradient(139deg, #cc5f00, #f7dac0);
    }

        .box.eitaa .logo {
            border-radius: 32px;
        }


@media screen and (max-width:1200px) {
    body{
        display:unset;

    }
    .box {
        width:unset;
        max-width:350px;
        margin-left:auto;
        margin-right:auto;
    }
}