#content {
    padding: 0 !important;
}
.nectus-bg {
    /* background-color: #27467D; */
    /* background: linear-gradient(to top right, #50952f 0%, #27467D 50%); */
    background: linear-gradient(229deg, #50952f, #27467D);
    background-size: 300% 300%;

    -webkit-animation: AnimationName 10s ease infinite;
    -moz-animation: AnimationName 10s ease infinite;
    animation: AnimationName 10s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:99% 0%}
    50%{background-position:2% 100%}
    100%{background-position:99% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:99% 0%}
    50%{background-position:2% 100%}
    100%{background-position:99% 0%}
}
@keyframes AnimationName {
    0%{background-position:99% 0%}
    50%{background-position:2% 100%}
    100%{background-position:99% 0%}
}
.nectus-bg-white {
    background-color: #fff;
}
.nectus-login-wrap {
    padding: 100px 200px;
    height: 100vh;
    position: relative;
}
.nectus-login-wrap-inner {
    /* background: linear-gradient(to bottom left, #50952f 0%, #27467D 50%); */
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 25px;
    max-width: 1200px;
}
.bg-img {
    background-image: url(../nectus/img/HRM-6.jpg);
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 25px 0 0 25px;
    position: relative;
}
.bg-img::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #50952f;
    opacity: 0.95;
    border-radius: 25px 0 0 25px;
}
.left-title {
    padding: 60px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);  
    margin: 0;
    color: #fff;
}
.form-wrap #logInPanelHeading {
    margin-bottom: 20px;
    color: #27467D;
}
.form-wrap .logo {
    width: 150px;
    margin-bottom: 20px;
}
.form-wrap {
    padding: 30px 60px;
    background-color: #fff;
    border-radius: 0 25px 25px 0;
    text-align: center;
}

.form-wrap input {
    width: 100%;
    background: #eee;
    padding: 10px;
    border-radius: 20px;
    margin: 0 10px;
    display: inline-block;
    text-align: center;
    color: #27467D;
    font-size: 15px !important;
}
.form-wrap .textInputContainer {
    margin: 10px 0;
    position: relative;
}
.form-wrap .textInputContainer .username-icon,
.form-wrap .textInputContainer .password-icon {
    width: 15px;
    height: 15px;
    display: inline-block;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
.form-wrap .textInputContainer .username-icon {
    background-image: url(../nectus/img/avatar.svg);
}
.form-wrap .textInputContainer .password-icon {
    background-image: url(../nectus/img/lock.svg);
}
.form-wrap .textInputContainer input {
    padding-left: 50px;
    text-align: left;
}
.form-wrap #divLoginButton input,
.form-wrap-password .formbuttons input {
    /* background: linear-gradient(to top right, #50952f 0%, #27467D 50%) !important; */
    background-color: #50952f;
    color: #fff !important;
    cursor: pointer;
    font-weight: bold;
}
.form-wrap #forgotPasswordLink {
    margin: 15px 0;  
}
.form-wrap #forgotPasswordLink a {
    color: #27467D;
    font-size: 13px !important;
}
.form-wrap .social ul li div {
    width: 30px;
    height: 30px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.form-wrap .social ul {
    list-style: none;
    display: inline-block;
    margin: 0;
}
.form-wrap .social ul li {
    display: inline-block;
    margin: 5px;
}
.form-wrap .social ul li div.facebook {
    background-image: url(../nectus/img/facebook.svg);
}
.form-wrap .social ul li div.linkedin {
    background-image: url(../nectus/img/linkedin.svg);
}
.form-wrap .social ul li div.twitter {
    background-image: url(../nectus/img/twitter.svg);
}
.form-wrap .social .social-title {
    position: relative;
    top: -15px;
}
.nectus-copyright {
    color: #000;
    font-size: 12px;
    text-align: center;
    display: inline-block;
    width: 100%;
    margin-top: 30px;
    font-weight: bold;
}
.nectus-copyright a {
    color: #27467D;
}
