@font-face {
    font-family: 'Vazir-FD';
    src: url('../fonts/Vazir-FD.eot?#') format('eot'),
        url('../fonts/Vazir-FD.ttf') format('truetype'),
        url('../fonts/Vazir-FD.woff2') format('woff2'), 
        url('../fonts/Vazir-FD.woff') format('woff');
}
body {
    font-family: 'Vazir-FD';
}
ul {
    padding: 0;
}

button {
    float: left;
    background-color: #4E3E55;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    font-weight: 600;
    border-radius: 3px;
    padding: 15px 35px;
    margin: 26px 5px 0 5px;
    cursor: pointer;
}

    button:focus {
        outline: none;
    }

    button:hover {
        background-color: #33DE23;
    }

    button:active {
        background-color: #81ccee;
    }

/* The SIMPLE-TOAST - position it at the bottom and in the middle of the screen */
#simpleToast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #20A39E;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-family: monospace;
    display: inline-flex;
    line-height: 12px;
}

    #simpleToast span {
        margin-left: 12px;
        margin-top: 2px;
    }

    #simpleToast.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}



.login-holder {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .login-holder .logo-holder {
        width: 100px;
        margin-bottom: 24px;
    }

        .login-holder .logo-holder img {
            width: 100%;
        }

    .login-holder .login-box {
        background-color: #fff;
        width: 30%;
        padding: 70px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }

        .login-holder .login-box .login-title {
            margin-bottom: 24px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
        }

        .login-holder .login-box .input-holder {
            margin-bottom: 16px;
        }

            .login-holder .login-box .input-holder input {
                border: 0;
                border: 1px solid #e0e3ff;
                width: 100%;
                outline: none;
                padding: 16px;
                border-radius: 16px;
                height: 50px;
                display: flex;
                align-items: center;
            }

                .login-holder .login-box .input-holder input:focus {
                    border: 1px solid #2028eb;
                    box-shadow: none;
                }

.btn-holder {
    width: 100%;
}

    .btn-holder .btn {
        height: 50px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #850001;
        border: 0;
        border-radius: 16px;
    }
.validation-summary-errors li {
    list-style:none;
    color:red;
}

@media only screen and (max-width: 768px) {
    .login-holder .login-box {
        width: 80%;
        padding: 30px;
    }

    #msgSubmit {
        font-size: 14px;
        font-weight: bold;
    }

    .logo-holder {
        width: 150px !important;
    }

    .login-holder .login-box .login-title {
        display: none;
    }
}
