
/* Add custom CSS here, it will not be overwritten by product updates */

/*==== FONT ====*/
@font-face {
    font-family: vazir;
    src: url("fonts/Vazir-Medium-FD-WOL.eot"),
        url("fonts/Vazir-Medium-FD-WOL.ttf"),
        url("fonts/Vazir-Medium-FD-WOL.woff"),
        url("fonts/Vazir-Medium-FD-WOL.woff2");
}
html{
    background-image: url("images/main_bg.jpg")!important ;
    background-repeat: no-repeat !important;
    background-size: cover;
    direction: rtl;
    font-family: vazir !important;
}
input,button{
    font-family: vazir !important;
}
.text-center{
    text-align: center;
}
.center{
    background-color: #ffffffe0;
    width:30%;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    animation: scaleUp 1s;
    transform-origin: left center;
    border-radius: 10px;
    box-shadow: 0 0 10px #c8cbd5;
    margin: 0 !important;
    color:#656768 !important;
}
/*====header logo====*/
.custom_logo_content{
    display: flex;
    margin-bottom: 30px;
    align-items: baseline;
    border-bottom: 1px solid #cecece;
}
.custom_logo_content_img{
    width:25px;
    height: 25px;
}
.custom_logo_content_text{
    color: #656768;
    font-size: 17px;
    margin-right: 11px;
    font-weight: bold;
}
/*=== INPUT ===*/
input{
    width:90% !important;
    border-radius: 35px !important;
    padding:8px 42px 8px 0;
    border: none;
    border: 1px solid #d4d9ec;
    outline: none !important;
    color:#000;
    background-color: white;
    margin-bottom: 17px !important;
}
::placeholder{
    color: #535362;
}
/*=== LOGIN ICON ===*/
.login_icon{
    width:15px;
    height: 15px;
    fill: #abb2c4;
    position: absolute;
}
.login_icon_user{
    bottom: 55%;
    right: 8%;
}
.login_icon_pass{
    bottom: 32%;
    right: 4%;
}
#tr-password{
/*.login_icon_pass < span{*/
    position: relative;
}
/*==== BUTTON ====*/
#buttonLogOn{
    padding: 20px 0;
    color:#fff;
    width: 50% !important;
    margin: 0 auto;
    background-image: linear-gradient(45deg, #ef6565, #ec5c98);
}
#buttonLogOn:hover{
    background-image: linear-gradient(45deg, #ff6c6c, #ff64a5);
}
/*========== RESPONSIVE ==========*/
@media only screen and (max-width: 1200px){
    .center{
        width: 45%;
    }
}
@media only screen and (max-width: 900px){
    .center{
        width: 60%;
    }
}
@media only screen and (max-width: 600px){
    .center{
        width: 80%;
    }
}

/*======== ANIMATION ========*/
@keyframes scaleUp {
    0%{
        opacity: 0;
        transform: scale(0) translate(-50%,-50%);
    }
    100%{
        opacity: 1;
        transform: scale(1) translate(-50%,-50%);
    }
}