* {
    box-sizing: border-box;
}

/* fonts */
@font-face { font-family: proxima; src: url(fonts/proxima/ProximaNovaRegular.otf); }
@font-face { font-family: proximaBold; src: url(fonts/proxima/ProximaNovaBold.otf); }
@font-face { font-family: proximaThin; src: url(fonts/proxima/ProximaNovaThin.otf); }
@font-face { font-family: proximaExtraBold; src: url(fonts/proxima/ProximaNovaExtrabold.otf); }
@font-face { font-family: proximaBlack; src: url(fonts/proxima/ProximaNovaBlack.otf); }
@font-face { font-family: proximaNovaAlt; src: url(fonts/proxima/ProximaNovaAltBold.otf); }

.dspNone { display: none !important; }
.jq-toast-single { font-family: 'proxima'; font-size: 14px; padding: 20px 15px; }
html { height: 100%; }
body { height: 100%; font-size: 14px; font-family: 'proxima'; margin: 0; padding: 0; display: flex;  flex: 1; }

a:link, a:visited { color: #0f53fa; text-decoration: none; }
a:hover { color: #242424; text-decoration: underline; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 130px white inset !important;
    font-family: 'proxima';
    font-size: 16px;
}

.form-error {
    display: none;
    background-color: #ffcc00;
    padding: 15px;
    margin: 0px 0 0px 0;
    border-radius: 5px;
    line-height: 26px;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
}

.form-error.show {
    display: flex;
}

.auth-main {
    display: flex;
    flex-direction: row;
    flex: 1;
    background-color: #f5f5f5;
    height: 100%;
    bottom: 0;
    top: 0;
}

    .auth-main .left-col  {
        display: flex;
        justify-content: center;
        flex: 5;
    }

        .auth-main .left-col .inner {
            width: 400px;
            max-width: 90%;
            padding: 0;
            display: flex;
            flex-direction: column;
            position: relative;
        }

            .auth-main .left-col .inner .logo {
                padding: 50px 0;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .auth-main .left-col .inner .logo label {
                margin: 0;
                color: #1a49a1;
                font-size: 20px;
                font-family: 'proximaNovaAlt';
                letter-spacing: -1px;
            }

                .auth-main .left-col .inner .logo img{
                    height: 30px;
                }

            .auth-main .left-col .inner .form-box {
                display: flex;
                flex: 1;
                flex-direction: column;
                justify-content: center;
            }

                .auth-main .left-col .inner .form-box h1 {
                    padding: 0;
                    margin: 0;
                    font-family: 'proximaNovaAlt';
                    font-size: 40px;
                    letter-spacing: -1.5px;
                }

                .auth-main .left-col .inner .form-box h3 {
                    font-family: 'proxima';
                    font-size: 18px;
                    color: #666666;
                    margin: 10px 0 50px 0;
                    padding: 0;
                    line-height: 30px;
                }

                .auth-main .left-col .inner .form-box .el {
                    margin-bottom: 25px;
                    position: relative;
                }

                    .auth-main .left-col .inner .form-box .el a:link,
                    .auth-main .left-col .inner .form-box .el a:visited {
                        color: #ff6600;
                        position: absolute;
                        right: 24px;
                        top: 24px;
                    }

                    .auth-main .left-col .inner .form-box .el input {
                        width: 100%;
                        padding: 20px 25px;
                        border: #e8e8e8 1px solid;
                        border-radius: 3px;
                        font-family: 'proxima';
                        font-size: 16px;
                    }

                    .auth-main .left-col .inner .form-box .el span {
                        display: none;
                        color: #cc0001;
                        font-size: 12px;
                        padding: 10px 0 0 2px;
                    }

                    .auth-main .left-col .inner .form-box .el.error span {
                        display: flex;
                    }

                    .auth-main .left-col .inner .form-box .el.error input {
                        border: #cc0001 1px solid;
                        outline: #cc0001 1.5px solid;
                    }

                    .auth-main .left-col .inner .form-box .el button {
                        width: 100%;
                        padding: 0px 25px;
                        height: 62px;
                        position: relative;
                        border: #0f53fa 1px solid;
                        background-color: #0f53fa;
                        border-radius: 3px;
                        font-family: 'proxima';
                        font-size: 16px;
                        color: #ffffff;
                        cursor:pointer;
                        transition: .5s all;
                    }

                    button .loader { display: none; justify-content: center; align-items: center; }
                    button .loader img { width: 24px; }
                    button.inprogress .loader { display: flex; }
                    button label { cursor: pointer; display: flex; width: 100%; align-items: center; justify-content: center; }
                    button.inprogress label { display: none; }

                    .auth-main .left-col .inner .form-box .el button:hover {
                        background-color: #242424;
                        border: #242424 1px solid;
                    }

                .auth-main .left-col .inner .form-box .checkbox-container {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    font-size: 15px;
                    color: #666666;
                    margin-bottom: 35px;
                }

                .auth-main .left-col .inner .form-box .checkbox-container.error {
                    color: #cc0001;
                }

                    .auth-main .left-col .inner .form-box .checkbox-container i {
                        color: #ffffff;
                        background-color: #ffffff;
                        border-radius: 3px;
                        font-size: 22px;
                        margin-right: 10px;
                        cursor: pointer;
                        transition: .5s all;
                        border: #d4d4d4 1.5px solid;
                    }

                    .auth-main .left-col .inner .form-box .checkbox-container.error i {
                        border: #cc0001 1.5px solid;
                    }

                    .auth-main .left-col .inner .form-box .checkbox-container i:hover {
                        border: #009900 1.5px solid;
                    }

                    .auth-main .left-col .inner .form-box .checkbox-container i.selected {
                        background-color: #ffffff;
                        color: #0f53fa;
                        border: #0f53fa 1.5px solid;
                    }

    .auth-main .right-col {
        display: flex;
        flex-direction: col;
        flex: 7;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .auth-main .right-col.signup { background-image: url('../img/background/signin.jpeg'); }
    .auth-main .right-col.signin { background-image: url('../img/background/signup.jpeg'); }
    .auth-main .right-col.forgot { background-image: url('../img/background/forget.jpeg'); }
