/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

body {
    margin: 0;
    font-family: 'sb_font';
    
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a,
a:hover {
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

@font-face {
    font-family: 'sb_font';
    src: url('../fonts/IRANSansWeb.ttf');
}

.site_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    padding: 0 10px;
}

.form_outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 400px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
    max-width: 100%;

}

.form_outer.active .loading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form_outer.active .form_container {
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

.form_container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 50%;
    min-height: 50%;
    border-radius: 8px;
    padding: 20px;
}

.loading {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.178);
    border-radius: 8px;
    display: none;
}

.loading_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.loading_inner p {
    font-size: 18px;
    font-weight: bold;
}

input {
    font-size: 17px;
    padding: 14px 16px;
    width: 100%;
    background: #FFFFFF url(/rsrc.php/v3/yO/r/YQNfPR9MJfx.png) repeat-x;
    border: 1px solid #dddfe2;
    color: #1d2129;
    font-size: 16px;
    line-height: 16px;
    vertical-align: middle;
    margin-bottom: 15px;
    text-align: right;
    font-family: 'sb_font';
}

input:-ms-input-placeholder {
    font-family: 'input' !important;
}

input::-ms-input-placeholder {
    font-family: 'input' !important;
}

input::placeholder,
input:-ms-input-placeholder {
    font-family: 'input' !important;
}

input:focus {
    border-color: #1877f2;
    -webkit-box-shadow: 0 0 0 2px #e7f3ff;
    box-shadow: 0 0 0 2px #e7f3ff;
    caret-color: #1877f2;
    outline: none !important;
}

button.sb_btn {
    background-color: #1877f2;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    line-height: 48px;
    padding: 0 16px;
    width: 100%;
    cursor: pointer;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s
}

button.sb_btn:hover {
    background-color: #1868d1;

}

.logo {
    height: 100px;
    margin: 20px 0 10px;
}

.logo img {
    height: 100%;
}

.co_title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.show_message {
    margin: 10px 0;
    padding: 10px;
    background-color: #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    color: #1868d1;
    display: none;
    direction: rtl;
}

.copyright {
    margin: 20px 0;
    font-size: 14px;
    color: #eee;
}

.copyright a {
    color: rgb(78, 78, 78);

}

.copyright a:hover {
    color: #1877f2;
}