﻿@import url(/Fonts/Vazirmatn-FD-font-face.css);
:root {
    --blueOne: #3E53A4;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: Vazirmatn FD;
}

html, body, form {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: Vazirmatn FD;
    font-size: 14px;
    color: #000000;
    background: url('/Images/Watermark.png') center 80px no-repeat;
}

a {
    color: var(--blueOne);
    text-decoration: none;
}
    a:visited {
        
    }
    a:hover {
        color: #F57C23;
    }
    a:focus, input:focus, button:focus {
        outline: 1px solid #A0A0A0;
    }
input:focus, button:focus {
    outline: 1px solid #A0A0A0;
}
input::-webkit-input-placeholder {
    color: #BABABA;
    font-size: 14px;
    font-family: Vazirmatn FD;
}

input:-ms-input-placeholder {
    color: #BABABA;
    font-size: 14px;
    font-family: Vazirmatn FD;
}

input::-moz-placeholder {
    color: #BABABA;
    font-size: 14px;
    font-family: Vazirmatn FD;
    opacity: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

img {
    border: 0px;
}

input, textarea, select {
    font-family: Vazirmatn FD;
    margin: 0px;
    padding: 0px;
}

.red {
    color: #800000;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 220px;
    height: 40px;
    line-height: 36px;
    background-color: var(--blueOne);
    border: 0px;
    border-radius: 8px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-family: Vazirmatn FD;
}
    .button.disabled {
        background-color: #ECEEF6;
    }
button.button[disabled="disabled"] {
    background-color: #ECEEF6;
}

#toast {
    display: none;
    position: absolute;
    top: 40px;
    left: 0px;
    right: 0px;
    max-width: 700px;
    min-height: 30px;
    margin: 0px auto 0px auto;
    background-color: red;
    color: white;
    text-align: center;
    padding: 5px 20px 5px 20px;
    direction: rtl;
    z-index: 212;
    cursor: default;
}

.modalBack {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #000000;
    opacity: 0.7;
    z-index: 1;
}

.loadingIcon {
    display: inline-block;
    border-radius: 50%;
    border: 3px solid white;
    border-color: white transparent white transparent;
    animation: loadingIcon 1.2s linear infinite;
}

@keyframes loadingIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.topBlue {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 8px;
    background-color: var(--blueOne);
    z-index: 1;
}

.boxArea {
    position: relative;
    width: 100%;
    max-width: 328px;
    min-height: 380px;
    margin: 124px auto 0px auto;
    background-color: #FCFCFC;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    text-align: center;
}
    .boxArea .logo {
        position: absolute;
        top: -24px;
        left: 0px;
        right: 0px;
        margin: 0px auto;
        width: 100px;
        height: 64px;
    }
    .boxArea * {
        zzzzzzzzoutline: none;
    }

    .boxArea .pageTitle {
        height: 20px;
        margin: 44px 0px 28px 0px;
        color: #F1A6C1;
        font-weight: 700;
        font-size: 11px;
        line-height: 16px;
    }

    .boxArea input {
        width: 200px;
        height: 20px;
        border: 0px;
        border-bottom: 2px solid #E0E0E0;
        font-size: 14px;
    }
    .boxArea a {
        display: inline-block;
        color: var(--blueOne);
        direction: rtl;
    }
        .boxArea a:hover {
            color: var(--blueOne);
        }

footer {
    margin: 16px auto;
    text-align: center;
}
    footer .btnHomePage {
        line-height: 24px;
        color: var(--blueOne);
        font-size: 14px;
        font-weight: bold;
    }
    footer .btnBackToSangaar {
        display: none;
        line-height: 24px;
        color: var(--blueOne);
        font-size: 14px;
        font-weight: bold;
    }
.bottomBlue {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 8px;
    background-color: var(--blueOne);
}

@media screen and (max-width: 500px) {
    body {
        background: unset;
    }

    form {
        padding: 0px 16px;
    }
    .boxArea {
        margin-top: 40px ;
    }
    .topBlue {
        display: none;
    }
   .bottomBlue {
        display: none;
    }
}