body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 2em;
}
a {
    color: #FD8A10;
    text-decoration: none;
}
.loginImg {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 71%;
    height:100%;
    background: url(../../../images/basfIMS/IMSLoginImg.png) no-repeat;
    background-size: cover;
    background-position: top right;
    display: inline-block;
    z-index: -1;
}
.loginDiv {
    margin: 0;
    width: 29%;
    height: 100%;
    background-color: #FFFFFF;
    float: right;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-end;
}
.login-panel {
    width: 370px;
    height: 554px;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center;
}
.login-panel .title {
    text-align: left;
    font-weight: 900;
    color: #39414C;
    margin-left: 5px;
    font-size: 24px;
}
.login-panel .submit-btn {
    width: 100%;
    height: 42px;
    border-radius: 2px;
    padding: 10px 8px 10px 8px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    border: 0px;
    background-color: #FD8A10;
    margin-top: 34px;
    margin-left: 0;
}
.login-panel .line{
    line-height: 1px;
    border-left: 100px solid #DBDEE2;
    border-right: 100px solid #DBDEE2;
    line-height: 1px;
    font-size: 14px;
    margin-top: 34px;
    color: #8A929E;
    font-weight: 500;
}

.login-panel form {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.login-panel #user-prompt {
    position: absolute;
    left: 0;
    top: 8px;
    text-align: left;
    color: #39414C;
    font-size: 16px;
    font-weight: 400;
}

.login-panel #password-prompt {
    position: absolute;
    left: 0;
    top: 98px;
    text-align: left;
    color: #39414C;
    font-size: 16px;
    font-weight: 400;
}

.login-panel .forgot {
    position: absolute;
    right: 0;
    top: 98px;
    text-align: left;
    color: #FD8A10;
    font-size: 14px;
    font-weight: 500;
}

.login-panel #captcha-prompt {
    position: absolute;
    left: 0;
    top: 188px;
    text-align: left;
    color: #39414C;
    font-size: 16px;
    font-weight: 400;
}

.login-panel form input {
    width: 96%;
    height: 26px;
    background-color: #F3F4F5;
    border: 1px solid #DBDEE2;
    outline: none;
    color: #2A3039;
    font-size: 16px;
    text-indent: 0;
    margin-top: 40px;
}

.login-panel #privacyPolicyLink {
    text-align: left;
    color: #333333;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    margin-left: 5px;
}

.login-panel .submit-btn-disabled {
    width: 100%;
    height: 42px;
    border-radius: 2px;
    padding: 10px 8px 10px 8px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    border: 0px;
    background-color: #C5C9CF;
    margin-top: 34px;
    margin-left: 0;
}


.captcha-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#captcha {
    width: 176px;
    text-indent: 0;
    margin-left: 0;
    margin-right: 30px;
}

.captcha-bar img {
    width: 128px;
    height: 46px;
    margin-bottom: 10px;
}

.form-header {
    position: absolute;
    display: flex;
    top: 15px;
    right: 30px;
    justify-content: right;
}

.form-header .language {
    display: flex;
    width: 100px;
    justify-content: space-between;
}

.form-header .langDiv {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    color: #FD8A10;
}

.form-header .langDivSep {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #CCCCCC;
}

@media only screen and (max-width: 1280px) and (max-height: 832px) {
    .form-header .langDiv {
        font-size: 20px;
    }
}

.protocal-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#protocal {
    width: 16px;
    height: 16px;
    margin: 0;
}

.protocal-checkbox {
    position: relative;
    display: flex;
}

.protocal-checkbox label {
    cursor: pointer;
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    background: #FFF;
    border:1px solid #C5C9CF;
}
.protocal-checkbox label:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 9px;
    height: 5px;
    background: transparent;
    top: 3px;
    left: 2px;
    border: 3px solid #FD8A10;
    border-top: none;
    border-right: none;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.protocal-checkbox input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.form-footer {
    width: 100%;
    color: #A9AFB8;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    height: 18%;
    align-items: flex-end;
    margin-bottom: 20px;
}

.error_msg {
    color: #FD8A10;
    width: 100%;
    line-height: 20px;
    font-size: 15px;
    font-weight: 500;
}

#msg {
    padding: 10px;
}