/******************** GENERAL ********************/
html,
body {
    width: 100%;
    height: 100%;
}
body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    background: #ec008c;
    background: linear-gradient(90deg, #ec008c 0%, #e60089 15.29%, #dc0083 32.52%, #cb0079 50.69%, #b4006b 69.51%, #970059 88.65%, #84004c 100%);
}
body:before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../layout/bg-login.jpg);
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
strong,
h2 {
    font-weight: 700;
}
a:link,
a:visited {
    color: #ec008c;
    text-decoration: none;
    border-bottom: dotted 1px #ec008c;
}
a:hover,
a:active {
    color: #bc0070;
    text-decoration: none;
    border-bottom: dotted 1px #bc0070;
}
.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: 6px 6px 4px 4px;
}
.panel .panel-body {
    padding: 0;
}
header {
    font-size: 0;
    background-color: #333333;
    border-radius: 4px 4px 0 0;
}
header .logo {
    border: none;
    margin: 20px;
    width: 190px;
    display: inline-block;
}
header .logo img {
    width: 100%;
    display: block;
}
.page-title {
    background-color: #222222;
    color: #ffffff;
    font-size: 21px;
    margin: 0 -20px 25px;
    padding: 15px 10px;
    font-weight: 700;
    text-align: center;
    border-radius: 0;
}
.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: 14px;
}
.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: #ec008c;
    color: #ffffff;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: #ec008c;
    color: #ffffff;
    border: none;
}
.nav-tabs > li.active {
    display: none;
}
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 18px;
    border: none;
    border-radius: 4px;
    padding: 8px 10px;
    background-color: #bcbec0;
    color: #333333;
}
.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%;
    }
}