@font-face {
    font-family: 'IRANSans-500';
    src: url("/static/font/IRANSansX-Medium(500).woff");
}

* {
    box-sizing: border-box;
    font-family: 'IRANSans-500';
}

/**,*/
/**:after,*/
/**:before {*/
/*    outline: 1px solid red;*/
/*}*/



#toast-container {
    padding: 10px;

}

/* استایل‌های عمومی برای toast */
#toast-container > .toast-warning {
    border-radius: 8px;
    opacity: 1;
    padding: 20px;
    background-color: #FFE2E1 !important;
}


#toast-container > .toast-success {
    border-radius: 8px;
    opacity: 1;
    padding: 20px;
    background-color: #F7F9F5 !important;

}

#toast-container > .toast-success .toast-progress {
    background: #429A3A !important;
    height: 4px !important;
    border-radius: 2px;
}

/* استایل Progress Bar */
#toast-container > .toast-warning .toast-progress {
    background: #CA383A !important;
    height: 4px !important;
    border-radius: 2px;
}

/* دکمه بستن */
.toast-close-button {
    opacity: 0.8;
    float: left;
    color: #626262 !important;
}

.toast-close-button:hover {
    opacity: 1;
}

#toast-container > .toast-warning, #toast-container > .toast-success {
    background-image: none !important;
    border: 1px solid #505050;

}

.toast-message {
    font-family: IRANSans-500;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #333333;


}

#toast-container > .toast-warning .toast-title {
    font-family: IRANSans-500;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 8px;
    color: #CA383A;
}

#toast-container > .toast-success .toast-title {
    font-family: IRANSans-500;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 8px;
    color: #429A3A;
}

/* انیمیشن ورود و خروج */
.toast {
    animation: slideIn 0.5s ease-in-out, slideOut 0.5s 4.5s ease-in-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 0.95;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 0.95;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/*====================================================modal*/
.login-modal {
    width: 396px;
    height: 408px;
    border-radius: 8px;
    background: #FAFBF8 !important;

}

.login-logo {
    width: 80px;
    height: 80px;
    border-radius: 50px;
}

.login-first-step p, .login-second-step p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #070707;
}

.login-second-step span,.resend-sms-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #808080;
}
.resend-sms-text{
    cursor: pointer;
}
.resend-sms-text:hover{
    color: #000000;
}
#login-mobile-input {
    width: 100%;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #CDCDCD;
    background: #FFFFFF;
    padding: 0 8px;
}

.login-input-container {
    padding: 0 36px 36px 36px;
}

.login-first-step-btn, .login-second-step-btn {
    width: 100%;
    height: 48px;
    border-radius: 4px;
    background: #8C9D79;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #FFFFFF;
    border: none;
}

.otp-inputs input {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #CDCDCD;
    text-align: center;
}
.captcha-txt,.captcha-input{
    height: 48px;
}
.captcha-button {
    background: #8C9D79;
    width: 48px;
    height: 48px;
}