﻿.login-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(210, 210, 210);
    z-index: 2;
}

#login-form {
    display: inline-block;
    width: 630px;
    text-align: left;
    margin: 100px 0 0;
    padding: 30px 50px 10px;
    border-radius: 3px;
    background-color: #FCF9F7;
    color: #666;
}

    #login-form .progress-container {
        position: absolute;
        padding-top: 130px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        font-size: 6em;
        color: #236EC4;
        text-align: center;
        z-index: 2;
    }

    #login-form .title {
        color: #236EC4;
        font-size: 20px;
        font-weight: bold;
    }

    #login-form .title,
    #login-form .sub-title {
        margin-bottom: 20px;
    }

    #login-form .form-control {
        text-align: center;
        height: 40px;
        border-radius: 2px;
    }

    #login-form .btn {
        padding: 10px;
        width: 100%;
        height: auto;
        color: #fff;
        background-color: #0078D7;
        border-color: #0078D7;
    }

        #login-form .btn:hover {
            background-color: #286090;
            border-color: #286090;
        }

    #login-form .errors {
        color: #a94442;
        padding-left: 5px;
    }

    #login-form .login-errors {
        margin-top: 10px;
        font-size: 1.1em;
        font-weight: bold;
    }
