body{
    margin: 0%;
    padding: 0%;
    background-color: #ecf0f1;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mainContainer{
    width: 600px;
    height: auto;
    top: 50%;
    left: 50%;
    background: rgba(255,255,255,.3);
    transform: translate(-50%,-50%);
    position: absolute;
    padding: 50px;
    box-shadow: 0px 2px 3px rgba(0,0,0,.2);
}

.logoBanner{
    width: 100%;
    padding: 2px;
    height: 50px;
    background-color: #ecf0f1;
    float: left;
}

.logoBanner img{
    padding-top: 10px;    
    padding-left: 10px;
    width: 120px;
    height: 50px;
    background-blend-mode: multiply;
    float: left;
}

.iconBanner{
    width: 100%;
    height: 70px;
    margin-bottom: 2px;
    padding: 2px;
    font-size: 50px;
    color: red;
    display: none;
}

#icon{
    visibility: visible;
}

.messageBanner{
    top:50%;
    left: 50%;
    padding: 10px;  
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: inline;
}

footer {
    position: absolute;
    width: 300px;
    font-size: 12px;
    top: 90%;
    left: 40%;
    transform: translate(-50%,-50%);    
    align-content: center;
    padding: 2px;
    height: 100px;
}
.copyRight{
    position: relative;
    left: 50%;
    width: 100%;
    top: 80%;
}

.loader{
    top: 50%;
    left: 50%;
    width: 100%;
    height: 50px;
    display: none;
    margin-top: 20px;
    transform: translateX(265px);
    align-items: center;
    visibility: visible;
}

.loaderObj{
    width: 4px;
    height: 40px;
    margin: 0 3px;
    background: green;
    border-radius: 10px;
    animation: loading 0.8s infinite;
}

.loaderObj:nth-child(1){
    animation-delay: 0.1s;
}
.loaderObj:nth-child(2){
    animation-delay: 0.2s;
}
.loaderObj:nth-child(3){
    animation-delay: 0.3s;
}
.loaderObj:nth-child(4){
    animation-delay: 0.4s;
}
.loaderObj:nth-child(5){
    animation-delay: 0.5s;
}
.loaderObj:nth-child(6){
    animation-delay: 0.6s;
}
.loaderObj:nth-child(7){
    animation-delay: 0.7s;
}
.loaderObj:nth-child(8){
    animation-delay: 0.8s;
}

@keyframes loading{
    0%{
        height: 0%;
    }
    50%{
        height: 100%;
    }
    100%{
        height: 0%;
    }
}

.rsaTokenForm{
    width: 360px;
    height: auto;
    padding: 10px 50px;
    background: rgba(255,255,255,.3);
    border-radius: 10px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.formErrorBanner{
    width: 360px;
    height: 360px;
    padding: 50px 50px;
    background: rgba(255,255,255,.3);
    border-radius: 10px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
}

.rsaTokenFormBanner{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    padding: 20px;
}
.formFields input{
    text-align: center;
    padding: 3px;
    margin: 10px auto;
    width: 70%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
    height: 40px;
    display: block;
    border: 1px solid  #95a5a6;
    border-radius: 20px;
    outline: none;
    text-decoration: none;
    background: none;
}

.loginButton{
    display: block;
    width: 40%;
    padding: 3px;
    margin: 20px auto;
    border: none;
    height: 40px;
    border: 1px solid #95a5a6;
    border-radius: 20px;
    background: #ecf0f1;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
}

.loginButton:hover{
    background: #7f8c8d;
}

.rsaTokenForm h4{
    color: red;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.formLoader{
    top: 50%;
    width: 100%;
    height: 50px;
    display: none;
    margin-top: 20px;
    transform: translateX(100px);
    align-items: center;
    visibility: visible;
}

.formLoaderObj{
    width: 3px;
    height: 3px;
    margin: 0 3px;
    background: green;
    border-radius: 10px;
    animation: loading 0.8s infinite;
}

.formLoaderObj:nth-child(1){
    animation-delay: 0.1s;
}
.formLoaderObj:nth-child(2){
    animation-delay: 0.2s;
}
.formLoaderObj:nth-child(3){
    animation-delay: 0.3s;
}
.formLoaderObj:nth-child(4){
    animation-delay: 0.4s;
}
.formLoaderObj:nth-child(5){
    animation-delay: 0.5s;
}
.formLoaderObj:nth-child(6){
    animation-delay: 0.6s;
}
.formLoaderObj:nth-child(7){
    animation-delay: 0.7s;
}
.formLoaderObj:nth-child(8){
    animation-delay: 0.8s;
}