@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: rgba(151, 38, 42, 1);
    background: linear-gradient(90deg,rgba(151, 38, 42, 1) 0%, rgba(220, 31, 38, 1) 25%, rgba(200, 32, 46, 1) 50%, rgba(200, 32, 76, 1) 75%, rgba(37, 72, 157, 1) 100%);
}

.loginTextHeading {
    font-family: Inter Bold;
    font-size: 22px;
    color: #fff;
    padding: 20px 0;
}

.loginFeilds {
    width: 100%;
    padding: 12px 10px;
    border-radius: 4px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    background-color: transparent;
    margin: 2px 0;
}

.loginFeilds:focus {
    outline: none;
}

.loginFeilds::placeholder {
    color: #fff;
}
.passwordViewIcon {
    background-color: transparent;
    border: 0;
    color: #fff;
    display: inline-block;
    position: absolute;
    right: 6px;
    top: 10px;
}
.divParentRelative{
    position: relative;
}
.font16{
    font-size: 16px !important;
}
.loginFeildsBtn {
    padding: 10px 30px;
    background: #17479e;
    color: #fff;
    border-radius: 4px;
    border: 0;
    font-size: 16px;
    margin-top: 5px;
    font-family: 'Inter Bold';
}

.loginFeildsBtn:hover,
.loginFeildsBtn:focus {
    background: #fff;
    color: #17479e;
    outline: none;
}

.rightSideLoginPanel label {
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    display: none;
}
@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);
    } 
}