﻿html, body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: #6D6E71;
    background: #FFFFFF url(/static/Images/Folder/banner.jpg) no-repeat;
    background-size: cover;
    height: 100%;
}

.content-panel {
    margin: auto;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 430px;
    height: 500px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

    .content-panel .overlay {
        position: absolute;
        top: 10px;
        left: 10px;
        bottom: 10px;
        right: 10px;
        background-color: #ffffff;
        opacity: 0.5;
        z-index: 9999;
    }

.content-logo {
    background: url(/Static/Images/Logo/logo.png) center center no-repeat;
    background-size: auto 120px;
    height: 120px;
    cursor: pointer;
    margin: 10px 0 10px 0;
}

.content-header {
}

    .content-header h1 {
        font-size: 28px;
        font-weight: 300;
        position: relative;
        text-align: center;
    }

        .content-header h1:before {
            background: #ddd;
            content: "";
            display: block;
            height: 1px;
            position: absolute;
            top: 50%;
            width: 100%;
        }

        .content-header h1:before {
            left: 0;
        }

        .content-header h1 span {
            background: #fff;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }

.content-footer {
    margin-top: 50px;
}

    .content-footer .forgot-password {
        color: #273465;
        float: right;
        margin-right: 18px;
    }

    .content-footer .keep-me-connected {
        color: #273465;
        float: left;
        margin-left: 8px;
    }

    .content-footer .keep-me-connected-checbox {
        color: #273465;
        float: left;
        margin-left: 18px;
        margin-top: -3px;
    }

    .content-footer .forgot-password:hover, .content-footer .keep-me-connected:hover {
        cursor: pointer;
        text-decoration: underline;
    }

.text-input, .password-input {
    outline: none;
    padding: 16px 16px 13px 70px;
    margin: 0;
    font-size: 22px;
    text-decoration: none;
    color: #6D6E71;
    background-color: #fafafb;
    background-repeat: no-repeat;
    border: 1px solid #ccd0da;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    width: 386px;
}

.text-input {
    background-image: url(/Static/Images/Icons/email-login.png);
    background-position: 15px 15px;
    border-bottom: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-top-left-radius: 5px;
    -moz-border-top-right-radius: 5px;
    margin-top: 10px;
}

    .text-input.alone {
        border-bottom: 1px solid #ccd0da;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        -webkit-border-bottom-left-radius: 5px;
        -webkit-border-bottom-right-radius: 5px;
        -moz-border-bottom-left-radius: 5px;
        -moz-border-bottom-right-radius: 5px;
    }

.password-input {
    background-image: url(/Static/Images/Icons/password-login.png);
    background-position: 19px 11px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-bottom-left-radius: 5px;
    -moz-border-bottom-right-radius: 5px;
}

a.button-login {
    display: block;
    background-color: #273465;
    border: 1px solid #273465;
    padding: 13px 0 13px 0;
    margin: 25px auto 25px auto;
    font-size: 18px;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    width: 386px;
    font-weight: 300;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

    a.button-login:hover {
        background-color: #ffffff;
        color: #273465;
        font-weight: 600;
        cursor: pointer;
    }

/*LOADING COLORS*/
.pace .pace-progress {
    background: #ffffff;
}

.pace .pace-progress-inner {
    box-shadow: 0 0 10px #ffffff, 0 0 5px #ffffff;
}

.pace .pace-activity {
    border-top-color: #ffffff;
    border-left-color: #ffffff;
}

/*responsive content*/
@media screen and (max-width: 500px) {
    .content-panel {
        width: 90%;
    }

    .text-input, .password-input {
        width: 80%;
    }

    a.button-login {
        width: 80%;
    }
}
