﻿@font-face {
    font-family: 'Muli';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Muli/Muli-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Muli';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Muli/Muli-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Muli';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Muli/Muli-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Muli';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Muli/Muli-ExtraBold.ttf') format('truetype');
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 14px;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #f5f6fa;
    font-family: 'Muli';
    color: #f8f8f8;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../images/bg.jpg');
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 600px;
}

.page-authorizeresponse.container {
    display: flex !important;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 100px;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
}

/*Check box*/
input[type="checkbox"] {
    position: absolute;
    right: 9000px;
}

    input[type="checkbox"] + .label-text:before {
        display: inline-block;
        margin-right: 5px;
        width: 1em;
        content: "\e067";
        font-family: "Glyphicons Halflings";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        vertical-align: sub;
    }

    input[type="checkbox"]:checked + .label-text:before {
        content: "\e157";
    }

.page-header {
    text-align: center;
}

.page-login .panel {
    width: 450px;
    margin: 0;
    padding: 20px;
    background-color: rgba(0,0,0,.2);
    box-shadow: 0 3px 20px 3px rgba(0, 0, 0, 0.5);
}

    .page-login .panel .thumbnail {
        width: 175px;
        background-color: transparent;
        border: none;
        margin-left: auto;
        margin-right: auto;
    }

    .page-login .panel input {
        background-color: #f8f8f8;
        border: solid 0.4px #e1e5eb;
    }

        .page-login .panel input:focus {
            box-shadow: inset 0 1px 1px rgba(0,0,0,.75), 0 0 10px rgba(55,196,238,1)
        }

    .page-login .panel .panel-body .row {
        margin-top: 30px;
    }

    .page-login .panel .btn {
        width: 100%;
        background-color: #f8f8f8;
        color: #5b38c3;
        font-size: 16px;
        font-weight: 900;
    }

    .page-login .panel .security {
        border-radius: 5px;
        background-color: #EFEFEF;
        display: flex;
    }

    .page-login .panel .security-left {
        padding: 10px;
        padding-right: 5px;
        position: relative
    }

        .page-login .panel .security-left .border-over {
            border-radius: 5px;
            overflow: hidden;
        }

        .page-login .panel .security-left .refreshCaptcha {
            display: inline-block !important;
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
        }

            .page-login .panel .security-left .refreshCaptcha img {
                width: 20px;
            }

    .page-login .panel .security-right {
        justify-content: center;
        align-items: center;
        display: flex;
        padding-right: 10px;
        padding-left: 5px;
    }

    .page-login .panel .login-remember {
        padding-left: 10px;
    }

        .page-login .panel .login-remember label {
            font-weight: normal;
        }

.alert {
    margin: 0;
}

.alert-danger {
    background-color: transparent;
    border: none;
    color: #f00;
}

@media only screen and (max-width: 480px) {

    .container {
        min-height: 550px;
    }

    .footer {
        flex: 0 0 60px;
        width: 100%;
    }

    .page-login .panel {
        width: 330px;
        padding: 10px;
    }

        .page-login .panel .thumbnail {
            width: 150px;
        }
}
