﻿:root {
    --main_color: #1971c2;
}

body {
    background-color: #fafafa;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

.login-page {
    padding: 0;
    border: 1px solid #e6e6e6;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-banner img {
    height: 100%;
    filter: grayscale(50%);
    z-index:1;
}

.login-image {
    font-size: 15px;
}
    .login-image img {
        height: 150px;
        width: 150px;
    }

.form {
    background-color: #fff;
    text-align: center;
    min-width:400px;
    z-index:9999;
}

.signup {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 1px;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

    .signup p {
        margin-top: 10px;
    }
    .signup a {
        text-decoration: none;
    }

.form input {
    margin: 0 25px 6px;
    background: #fafafa;
    height: 36px;
    box-sizing: border-box;
    font-size: 14px;
    border: 1px solid #efefef;
    border-radius: 3px;
    color: #495057;
    width: 78%;
    font-size: 12px;
    line-height: 36px;
    left: 8px;
    padding: 9px 0 7px 8px;
}

    .form input:focus {
        border-color: #007bff;
        outline: 0;
    }

.form button {
    height: 36px;
    margin-top: 10px;
    padding: 9px 0 7px 8px;
    background: var(--main_color);
    font-size: 12px;
    width: 78%;
    border: 0;
    color: #fff;
    border-radius: 3px;
}
    .form button:active {
        border-color: var(--main_color);
        outline: 0;
    }

    .form button:focus {
        border-color: var(--main_color);
        outline: 0;
    }

    .form button:hover {
        cursor:pointer;
    }

h1 {
    margin: 20px auto;
    font-weight: 300 !important;
    line-height: 40px;
}

p {
    font-weight: 300;
    width: 200px;
    margin: 20px auto;
}

.form button:hover, .form button:active, .form button:focus {
    background: var(--main_color);
}

.forgotpass {
    display: block;
    margin: 40px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #003569;
    text-decoration: none;
}
a:hover {
    color: #ec1c34;
    text-decoration: none;
}

/*.checkbox-inline {
    height: 36px;
    width: 78%;
    padding: 8px;
}*/

.checkbox-inline input {
    height: 13px;
    margin-top: 2px;
}

@media only screen and (max-width: 1026px) {
    .login-banner {
        display: none;
    }
}