html,
body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
}

.bg-image {
    background-image: url(../img/bg.jpg);
    margin-right: -15px;
    margin-left: -15px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.login-header h1 {
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    text-decoration: none !important;
    margin: 0;
}

.login-header h1:hover {
    text-decoration: none;
}

.login-header h1:before {
    content: "";
    display: inline-block;
    position: absolute;
    height: 24px;
    width: 4px;
    left: -15px;
    top: 6px;
}

.login-header h1 span {
    color: #aaa;
    font-weight: 200;
    position: relative;
    z-index: 1;
    margin-left: 2px;
}

h2 {
    margin-top: 25px;
    font-size: 16px;
    font-weight: 300;
}

h3 {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 300;
}

.form-group label,
.checkbox label {
    font-weight: 300;
    font-size: 13px;
}

.form-control {
    height: 40px;
}

.btn {
    background: #4A90E2;
    height: 40px;
}

.site-info {
    font-weight: 300;
    font-size: 13px;
}

@media (max-width: 767px) {
    .text-xs-left {
        text-align: left;
    }
}

.vcenter {
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    display: flex;
    align-items: center;
}

#togglePassword {
    cursor: pointer;
    background: url(../img/eye.svg);
    display:inline-block;
    width:24px;
    height:24px;
    position: absolute;
    right: 16px;
    top: 32px;
}
#togglePassword.off {
    background: url(../img/eye-off.svg);
}