﻿* {
    padding: 0;
    margin: 0;
}

body {
    font-family: PeydaWebFaNum;
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .box > img.bg {
        width: 100%;
        height: 100vh;
        object-fit: fill;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .box > img.logo {
        border-radius: 10px;
    }

    .box::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(14, 43, 90, 0.36); /* همون رنگ #0e2b5a5b */
        z-index: -1;
    }



    .box > div.success {
        width: 80%;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #4dd513;
        background-color: #b2ef4c63;
        color: white;
        border-radius: 10px;
        margin-top: 30px;
    }

    .box > div.error {
        width: 80%;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #bd0643;
        background-color: #f262625c;
        color: white;
        border-radius: 10px;
        margin-top: 30px;
    }

    .box > a {
        width: 80%;
        height: 50px;
        transition: all .2s ease-in-out;
        background-color: #bd0643;
        line-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: white;
        text-decoration: none;
        outline: none;
        border-radius: 7px;
        position: absolute;
        bottom: 30px;
        font-family: PeydaWebFaNum;
    }

        .box > a:focus, .box > a:hover {
            background-color: #cb3366;
        }

    .box > div {
        margin: auto;
        max-width: 1400px;
        color: white;
        padding: 20px;
    }

    .padding-t300{
        padding-top:50px !important;
    }

        .box > div > h2 {
            margin-top: 50px;
        }

        .box > div > div {
            margin-top: 20px;
            border: 1px solid white;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            grid-gap: 20px;
        }

            .box > div > div > a > img {
                width: 250px;
                height: 70px;
            }


@media (max-width: 990px) {
    .box > div > div {
        flex-direction: column;
    }
}
