@font-face {
    font-family: Yekan;
    src: url("/assets/fonts/yekan_regular.woff2");
}

body
{
    direction: rtl;
    background-color: #f3f4f6;
}

body,a,p,li
{
    font-family: Yekan;
}

.first-parent
{
    width: 100vw;
    height: 100vh;
}

.main-container
{
    width: 350px;
    padding: 10px;
    border-radius: 10px;
}

label
{
    font-size: 13px;
    margin-bottom: 5px;
}

input.student-code
{
    font-size: 13px;
    height: 40px;
}

.btns button
{
    font-size: 14px;
    color: #fff !important;
}

.btns button.m-btn-sarasari
{
    background-color: #03ad6c;
}

.btns button.m-btn-farhangian
{
    background-color: #1175aa;
}

.btns button.m-btn-zaban
{
    background-color: #5611aa;
}

.btns button.m-btn-sarasari:hover
{
    background-color: #058253;
}

.btns button.m-btn-farhangian:hover
{
    background-color: #0c5a82;
}

.btns button.m-btn-zaban:hover
{
    background-color: #3c0a7d;
}

.loading .loadingImage
{
    width: 150px;
}

.loading-container
{
    background: #fff;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.loading
{
    display: none;
}

.logo-image img
{
    width: 110px;
}

.main-title
{
    font-weight: bold;
    font-size: 21px;

}

.response-alert, .response-alert-content
{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: none;
}

.response-alert .bg
{
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
}

.response-alert .content
{
    width: 300px;
    max-height: 80vh;
    overflow: auto;
    min-height: 50vh;
    z-index: 1000;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.response-alert.fail .content .message
{
    color: #de1350;
}

.response-alert .button-area
{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.response-alert .close-button
{
    width: 140px;
}