@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('fonts-Inter/inter-normal.eot');
    /* IE9 Compat Modes */
    src: local('fonts-Inter/inter-normal.ttf'), local('fonts-Inter/inter-normal.woff'), url('fonts-Inter/inter-normal.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('fonts-Inter/inter-normal.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('fonts-Inter/inter-normal.woff') format('woff'),
        /* Modern Browsers */
        url('fonts-Inter/inter-normal.ttf') format('truetype');
    /* Legacy iOS */
}

@font-face {
    font-family: 'Inter Medium';
    font-style: normal;
    font-weight: 400;
    src: url('fonts-Inter/inter-500-normal.ttf');
    /* IE9 Compat Modes */
    src: local('fonts-Inter/inter-500-normal.ttf'), local('fonts-Inter/inter-500-normal.woff'), url('fonts-Inter/inter-500-normal.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('fonts-Inter/inter-500-normal.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('fonts-Inter/inter-500-normal.woff') format('woff'),
        /* Modern Browsers */
        url('fonts-Inter/inter-500-normal.ttf') format('truetype');
    /* Legacy iOS */
}

@font-face {
    font-family: 'Inter Bold';
    font-style: normal;
    font-weight: 400;
    src: url('fonts-Inter/inter-800-normal.eot');
    /* IE9 Compat Modes */
    src: local('fonts-Inter/inter-800-normal.ttf'), local('fonts-Inter/inter-800-normal.woff'), url('fonts-Inter/inter-800-normal.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('fonts-Inter/inter-800-normal.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('fonts-Inter/inter-800-normal.woff') format('woff'),
        /* Modern Browsers */
        url('fonts-Inter/inter-800-normal.ttf') format('truetype');
    /* Legacy iOS */
}

body { 
    margin: 0;
    padding: 0; 
    font-family: 'Inter';
    font-size: 14px;
    color: #000;
}

.LoginWrap {
    margin: 40px 80px;
    display: flex;
    height: calc(100vh - 80px);
}

.LoginPanel {
    margin: 50px 28px 0 auto;
    width: 350px;
    color: #fff;
}

.LoginPanel a {
    color: #fff;
    text-decoration: none;
}

.LoginPanel a:hover {
    color: #606060;
    text-decoration: none;
}

.loginHeadingText {
    font-size: 24px;
    font-family: "Inter Bold";
    color: #fff;
}

.LoginImg {
    margin-top: 40px;
    margin-left: 100px;
}

.leftSideLoginPanel,
.rightSideLoginPanel {
    width: 50%;
}

.displayLabel {
    display: inline !important;
}

.titleTextStyle {
    background-color: #5D7B9D;
    font-style: normal;
    font-size: 0.9em;
    color: White
}

.loginButtonStyle {
    background-color: #FFFBFF;
    color: #CCCCCC;
    border-style: Solid;
    border-width: 1px;
    font-family: 'Inter';
    font-size: 0.8em;
    color: #17479e
}

.igi_bg {
    background: #98272B;
    background: linear-gradient(70deg, rgba(152, 39, 43, 1) 55%, rgba(23, 71, 158, 1) 90%)
}

.loginTextHeading {
    font-family: Inter Bold;
    font-size: 22px;
    color: #fff;
    padding: 20px 0;
}

.loginFeilds, #CaptchaInputText {
    width: 100%;
    padding: 12px 10px;
    border-radius: 4px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    background-color: transparent;
    margin: 2px 0;
    box-sizing: border-box;
}

.loginFeilds:focus {
    outline: none;
}

.loginFeilds::placeholder {
    color: #fff;
}

.loginFeildsBtn {
    padding: 10px 30px;
    background: #17479e;
    color: #fff;
    border-radius: 4px;
    border: 0;
    font-size: 16px;
    margin-top: 5px;
    font-family: 'Inter Bold';
}
.defaultBtn {
    padding: 10px 30px;
    background-color: transparent ;
    color: #fff;
    border-radius: 4px;
    border: 1px solid #fff;
    font-size: 16px;
    margin-top: 5px;
    font-family: 'Inter Bold';
}
.defaultBtn:hover {
    background-color: #fff;
    color: #17479e;
}
.linkBtn {
    background-color: transparent;
    color: #fff;
    border:0;
}
.loginFeildsBtn:hover, .loginFeildsBtn:focus {
    background: #fff;
    color: #17479e;
    outline: none;
}

.rightSideLoginPanel label {
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    display: none;
}
.LoginPanel br {
    display: none !important;
}
#CaptchaImage{
    width: 168px;
    height: 50px;
    border-radius: 4px;
    margin-bottom: 4px;
    margin-right: 10px;
}
.captcha-image-button{
    vertical-align: top;
    margin-top: 10px;
    height : 28px;
}
.captcha-containe{
    color: #fff;
    font-family: Inter;
}
@media only screen and (max-width: 1100px) {
    .LoginImg{
        width: 300px;
        height: auto;
        margin-top: 40px;
        margin-left: calc(50% - 150px);
    }
}

@media only screen and (max-width: 768px) {
    .LoginWrap {
        margin: 20px;
        display: block;
        height: calc(100vh - 0px);
    } 
    .LoginLogoImg{
        width: 180px;
        height: auto;
    }
    .LoginImg{
        width: 200px;
        height: auto;
        margin-top: 40px;
        margin-left: calc(50% - 100px);
    }
    .leftSideLoginPanel, .rightSideLoginPanel {
        width: 100%;
    }  
    .LoginPanel {
        margin: 10px 20px;
        width: calc(100% - 40px);
    }
   
}