.panel-login {
    border-color: #ccc;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 3px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 3px 0 rgba(0,0,0,0.2);
    background-color:#F5F5F5;
}
.panel-login>.panel-heading {
    color: #F5F5F5;
    background-color: #F5F5F5;/*#fff*/
    border-color: #F5F5F5;/*#fff*/
    text-align:center;
}
.panel-login>.panel-heading a{
    text-decoration: none;
    color: #666;
    font-weight: bold;
    font-size: 15px;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
.panel-login>.panel-heading a.active{
    color: #59B2E0;
    font-size: 18px;
}
.panel-login>.panel-heading hr{
    margin-top: 10px;
    margin-bottom: 0;
    clear: both;
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
    background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
    background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
}
.panel-login input[type="text"],.panel-login input[type="email"],.panel-login input[type="password"] {
    height: 45px;
    border: 1px solid #ddd;
    font-size: 16px;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
.panel-login input:hover,
.panel-login input:focus {
    outline:none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: #ccc;
}

.forgot-password {
    text-decoration: underline;
    color: #888;
}
.forgot-password:hover,
.forgot-password:focus {
    text-decoration: underline;
    color: #666;
}

.btn-register {
    background-color:#59B2E0;
    outline: none;
    color: #fff;
    font-size: 14px;
    height: auto;
    font-weight: normal;
    padding: 14px 0;
    text-transform: uppercase;
    border-color:#59B2E0;
}
.btn-register:hover,
.btn-register:focus {
    color: #fff;
    background-color: #59B2E0;
    border-color: #59B2E0;
}

.title {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    text-shadow: 2px 2px #000;
    color: #FFF;
}

.left-panel{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 650px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(102, 102, 102, 0.8);
    padding-top: 50px;
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 5px;
    overflow:auto;
}

.left-panel-item{
    padding-bottom: 2em;
    flex-shrink: 0;
}

.noflexgrow{
    /*position: relative;*/
    flex-grow: 0;
    flex-shrink: 0;
}

#qaelum-logo{
    /*position: relative;*/
    flex-grow: 0;
    flex-shrink: 0;
}

.welcome-text{
    /*position: relative;
    top: 10%;*/
    flex-grow: 0;
    flex-shrink: 0;
}

.user-pass-panel{
    /*position: relative;
    top: 15%;
    padding-right: 50%;*/
    align-self: stretch;
    min-height: 275px;
    flex-shrink: 0;
    flex-grow: 1;
}

.account{
    position: relative;
    /*top: 40%;/* in chrome it has to be 150px*/
    right: 13px;
}
.text-account{
    color: #ffffff;
    text-decoration: underline;
}

.footer-login {
    /*position: absolute;*/
    /*width: 100%;*/
    /*bottom: 1%;*/
    align-self: stretch;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: center;
}

.modal-dialog-centered {
    /*margin-top: 5%;*/
    color: #000000;
}

#video-btn-create-account{
     position: relative;
     left: 45%;
 }

.video-btn-cant-access-account{
    /*
    position: relative;
    left: 25%;
    */
}

body{
    color: #ffffff;
    overflow:auto;
    text-align: left;
}

.user-message{
    /*margin-top: 15%;*/
    /*color: #ffffff;*/
    font-size: 30px;
    text-align: center;
}

.modal-alert-window-style{
    background-color: #FF8800;
    border-color:#FF8800;
    outline: 3px solid #FF8800;
    color: #ffffff;
}

.modal-info-window-style{
    background-color: #59B2E0;
    border-color:#59B2E0;
    outline: 3px solid #59B2E0;
    color: #ffffff;
}

.popover{
    font-weight: bold;
    background-color: #FF8800;
    border-color:#FF8800;
}

.popover.right .arrow:after {
    border-right-color: #FF8800;
}

.loaderPanel{
    position: fixed;
    bottom: 50%;
    left: 50%;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #FF8800; /* Orange */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
}

.header-container{
    /*text-align:center;*/
}

.tile-header,.title-button{
    display:inline;
    /*vertical-align: middle;*/
}

.space-step1{
    margin-top: 6px;
}

.space-step2{
    margin-top: 6px;
}

/*.showpassword, .showpassword:hover{
    color:#333
}*/

/* New styles */
.white-text-link, .white-text-link:visited, .white-text-link:active{
    color: #ffffff !important;
    text-decoration: underline !important;
    cursor: pointer;
}

.white-text-link:hover{
    color: #007bff !important;
}

.btn-form-submit{
    width: 100%;
}

/*error messages*/
/*.isa_info, .isa_success, .isa_warning, .isa_error {
    margin: 5px 0px;
    padding: 5px;
}
.isa_info {
    color: #00529B;
    background-color: #BDE5F8;
}
.isa_success {
    color: #4F8A10;
    background-color: #DFF2BF;
}
.isa_warning {
    color: #9F6000;
    background-color: #FEEFB3;
}
.isa_error {
    color: #D8000C;
    background-color: #FFD2D2;
}*/
.isa_info i, .isa_success i, .isa_warning i, .isa_error i {
    margin: 0px 5px 0px 0px;
    font-size: 1.5em;
    vertical-align: middle;
}

.spacing-left{
    margin-left: 6px;
}

.red-feedback{
    color:#721c24;
    background-color:#f8d7da;
    border-color:#f5c6cb;
}








