/******************** GENERAL ********************/
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: "Gotham XNarrow A", "Gotham XNarrow B", "Arial Narrow", sans-serif;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    background-color: #591f80;
}
body:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../layout/bg-login.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
strong,
h2 {
    font-weight: 700;
}
a:link,
a:visited {
    color: #591f80;
    text-decoration: none;
    border-bottom: dotted 1px #591f80;
}
a:hover,
a:active {
    color: #000000;
    text-decoration: none;
    border-bottom: dotted 1px #000000;
}
.panel {
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 0 26px 0 rgb(0, 0, 0, 0.3);
    background-color: rgb(255, 255, 255);
    border-radius: 10px 10px 7px 7px;
}
.panel .panel-body {
    padding: 0;
}
header {
    font-size: 0;
    background-color: #591f80;
    border-radius: 7px 7px 0 0;
}
header .logo {
    border: none;
    margin: 10px 20px;
    width: 190px;
    display: inline-block;
}
header .logo img {
    width: 100%;
    display: block;
}
.page-title {
    background-color: #612788;
    color: #ffba00;
    font-size: 24px;
    margin: 0 -20px 25px;
    padding: 15px 10px;
    font-weight: 700;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
}
.ws-page-wrapper {
    height: 100%;
    position: relative;
    z-index: 2;
}
.vertical-center-outer {
    display: table;
    width: 100%;
    height: 100%;
}
.vertical-center-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.vertical-center-centered {
    position: relative;
    display: inline-block;
    width: 50%;
    max-width: 700px;
}
.panel-body {
    text-align: left;
}
.nav-tabs {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 24px;
    font-size: 16px;
}
.nav-tabs > li {
    float: none;
    display: inline-block;
    margin-bottom: 0;
}
.nav-tabs,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    border: none;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    background-color: #612788;
    color: #ffffff;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: #ffba00;
    color: #591f80;
    border: none;
}
.nav-tabs > li.active {
    display: none;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 18px;
    border: none;
    border-radius: 5px;
    padding: 8px 10px;
    background-color: #612788;
    color: #ffffff;
}
.tab-content {
    padding: 0 20px 20px;
}
@media (max-width: 767px) {
    .ws-page-wrapper {
        padding-top: 20px;
    }
    .vertical-center-inner {
        vertical-align: top;
    }
    .vertical-center-centered {
        width: 90%;
    }
}