.login-wrapper {
    position: fixed;
    padding: 0;
    margin: 0;
    z-index: 10000;
    top: 0;
    left: 0;
    padding-top: 20px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1.0);
}

.login-error {
    font-size: 16px;
    padding-bottom: 10px;
    color: #BB0000;
    text-align:center;
    font-weight:bold;
    width:500px;
    display:block;
}

.login-success {
    font-size: 16px;
    padding-bottom: 10px;
    color: #00BB00;
    text-align:center;
    font-weight:bold;
    width:500px;
    display:block;
}

.login-wrapper .centered {
    width: 500px;
    display: block;
    margin: 0 auto;
}

.login-wrapper .img {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.login-wrapper button.login {
    display: block;
    margin: 0 auto;
}

.login-form-group {
    font-size: 16px;
    background-color: #fff;
    color: #4c4c4c;
    padding-bottom: 10px;
    overflow: hidden;
}

.login-form-group label {

    float: left;
    width: 120px;
    margin-right: 10px;
    text-align: right;
    font-weight: 600;
    line-height: 32px;
    vertical-align: middle; }

.login-form-group input, .login-form-group select {
    float: left;
    height: 32px;
    padding-right: 30px;
}

.login-form-group input[type='checkbox'] {
    height: 24px; }

.login-form-section {
    margin-bottom: 10px; }

.login-form-section .login-section-label {
    font-weight: 700;
    margin-bottom: 5px;
    display: block; }

.login-input, .login-select {
    padding: 4px 8px;
    border-radius: 2px;
    border: 1px solid #ccc;
    height: 32px;
    outline: none;
    transition: box-shadow 0.4s;
    -webkit-transition: box-shadow 0.4s;
    background-color: #fff;
}

.login-loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 35px !important;
    height: 35px !important;
    margin-bottom: 10px !important;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
