﻿body {
}

#loginpanel {
    margin-top: 10%;
}

#LoginHeader {
    background-color: #337ab7;
    text-align: center;
    font-family: ‘Lucida Console’, Monaco, monospace;
}

input {
    display: block;
}
#ctl00_MainContent_myLogin_RememberMe {
    display: inline-block;
    margin: 4px 0px 0px 0px;
}

#ctl00_MainContent_myLogin_chkSSO {
    display: inline-block;
    margin: 4px 0px 0px 0px;
}

table {
    width: 100%;
}

.form-group {
  margin-bottom: 15px;

}

#ctl00_MainContent_lnkForgetPassword {
}

.btn {
    height: initial;
    width: 100%;
}

#loader-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}