/*-------------loader style--------------*/
.loaderOutr {
    width: 100%;
    height: 100%;
    /*position: relative;*/
    position: fixed;
    z-index: 1031;
    background-color: rgba(0, 0, 0, 0.5);
}

.loaderInr {
    width: 155px;
    height: 135px;
    display: block;
    margin: 0 auto;
    background-color: #FFF;
    border-radius: 10px;
    padding: 25px 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -80px;
    margin-left: -70px;
}

.LoadingText {
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
    padding: 10px 0 0 0;
    font-weight: bold;
    color: #E41937;
}
/**/
.loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 40px;
    width: 80px;
    box-sizing: border-box;
    margin: 38px;
    padding: 0px;
}

    .loader .loader-item {
        position: relative;
         float: left;
        height: 40px;
        width: 4px;
        margin: 0 2px;
        background-color: #E31837;
    }
        .loader .loader-item:nth-child(1) {
            -webkit-animation: loader-item-1 2s linear infinite;
            animation: loader-item-1 2s linear infinite;
        }

        .loader .loader-item:nth-child(2) {
            -webkit-animation: loader-item-2 2s linear infinite;
            animation: loader-item-2 2s linear infinite;
        }

        .loader .loader-item:nth-child(3) {
            -webkit-animation: loader-item-3 2s linear infinite;
            animation: loader-item-3 2s linear infinite;
        }

        .loader .loader-item:nth-child(4) {
            -webkit-animation: loader-item-4 2s linear infinite;
            animation: loader-item-4 2s linear infinite;
        }

        .loader .loader-item:nth-child(5) {
            -webkit-animation: loader-item-5 2s linear infinite;
            animation: loader-item-5 2s linear infinite;
        }

        .loader .loader-item:nth-child(6) {
            -webkit-animation: loader-item-6 2s linear infinite;
            animation: loader-item-6 2s linear infinite;
        }

        .loader .loader-item:nth-child(7) {
            -webkit-animation: loader-item-7 2s linear infinite;
            animation: loader-item-7 2s linear infinite;
        }

        .loader .loader-item:nth-child(8) {
            -webkit-animation: loader-item-8 2s linear infinite;
            animation: loader-item-8 2s linear infinite;
        }

        .loader .loader-item:nth-child(9) {
            -webkit-animation: loader-item-9 2s linear infinite;
            animation: loader-item-9 2s linear infinite;
        }

        .loader .loader-item:nth-child(10) {
            -webkit-animation: loader-item-10 2s linear infinite;
            animation: loader-item-10 2s linear infinite;
        }

    .loader:after {
        content: 'Loading...';
        font-size: 16px;
        font-family: "Arial";
        color: #E41937;
        text-align: center;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -32px;
        margin: auto;
        font-weight: bold;
    }

@-webkit-keyframes loader-item-1 {
    1% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    11% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    21% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes loader-item-1 {
    1% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    11% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    21% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@-webkit-keyframes loader-item-2 {
    7% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    17% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    27% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes loader-item-2 {
    7% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    17% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    27% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@-webkit-keyframes loader-item-3 {
    13% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    23% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    33% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes loader-item-3 {
    13% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    23% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    33% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@-webkit-keyframes loader-item-4 {
    19% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    29% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    39% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes loader-item-4 {
    19% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    29% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    39% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@-webkit-keyframes loader-item-5 {
    25% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    35% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    45% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes loader-item-5 {
    25% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    35% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    45% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@-webkit-keyframes loader-item-6 {
    31% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    41% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    51% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes loader-item-6 {
    31% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    41% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    51% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@-webkit-keyframes loader-item-7 {
    37% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    47% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    57% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes loader-item-7 {
    37% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    47% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    57% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@-webkit-keyframes loader-item-8 {
    43% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    53% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    63% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes loader-item-8 {
    43% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    53% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    63% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@-webkit-keyframes loader-item-9 {
    49% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    59% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    69% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes loader-item-9 {
    49% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    59% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    69% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@-webkit-keyframes loader-item-10 {
    55% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    65% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    75% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes loader-item-10 {
    55% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    65% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }

    75% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
/*-------------//loader style--------------*/

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Thin.eot');
    src: url('Poppins-Thin.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Thin.woff2') format('woff2'), url('../fonts/Poppins-Thin.woff') format('woff'), url('../fonts/Poppins-Thin.ttf') format('truetype'), url('../fonts/Poppins-Thin.svg#Poppins-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Black.eot');
    src: url('Poppins-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Black.woff2') format('woff2'), url('../fonts/Poppins-Black.woff') format('woff'), url('../fonts/Poppins-Black.ttf') format('truetype'), url('../fonts/Poppins-Black.svg#Poppins-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Bold.eot');
    src: url('Poppins-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.woff') format('woff'), url('../fonts/Poppins-Bold.ttf') format('truetype'), url('../fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-ExtraBold.eot');
    src: url('Poppins-ExtraBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-ExtraBold.woff2') format('woff2'), url('../fonts/Poppins-ExtraBold.woff') format('woff'), url('../fonts/Poppins-ExtraBold.ttf') format('truetype'), url('../fonts/Poppins-ExtraBold.svg#Poppins-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Light.eot');
    src: url('Poppins-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.woff') format('woff'), url('../fonts/Poppins-Light.ttf') format('truetype'), url('../fonts/Poppins-Light.svg#Poppins-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-SemiBold.eot');
    src: url('Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff'), url('../fonts/Poppins-SemiBold.ttf') format('truetype'), url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Medium.eot');
    src: url('Poppins-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff'), url('../fonts/Poppins-Medium.ttf') format('truetype'), url('../fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.eot');
    src: url('Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype'), url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-ExtraLight.eot');
    src: url('Poppins-ExtraLight.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-ExtraLight.woff2') format('woff2'), url('../fonts/Poppins-ExtraLight.woff') format('woff'), url('../fonts/Poppins-ExtraLight.ttf') format('truetype'), url('../fonts/Poppins-ExtraLight.svg#Poppins-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
/*-----------------------new css added-----------------------*/
body {
    /*font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";*/
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    font-family: 'Georama SemiExpanded';
    font-size: 14px;
}


#root, .App, body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.bgDark {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0,0,0,0.02);
    z-index: 0;
}

.loginBg {
    overflow: auto;
    background-size: cover;
    background-image: url(../images/3.svg);
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-size: contain;
    position: relative;
    z-index: 1;
}

.mainSec {
    min-width: 450px !important;
    width: 450px !important;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    margin: auto;
}

.logoOutrCls {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

    .logoOutrCls > .logoCls {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 0 auto;
        display: block;
    }

.loginBox1 {
    width: 100%;
    min-height: 450px;
    background-color: #ffffff;
    margin: 20px 0 20px 0;
    padding: 30px 20px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.14) 4px 10px 18px 0px;
    /*height: 100%;*/
    /*font-family: sans-serif;*/
}

    .loginBox1 .media-heading {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
        margin: 0;
        padding: 12px;
    }

        .loginBox1 .media-heading h2 {
            font-weight: 600;
            margin: 0 0 12px;
        }

.OutrInptCls1 {
    flex-grow: 0;
    max-width: 100%;
    flex-basis: 100%;
    padding: 12px;
}

    .OutrInptCls1 .input-group {
        border: 1px solid #bbbbbb;
        border-radius: 4px;
        display: flex;
        align-items: center;
        white-space: nowrap;
        margin-bottom: 0;
    }

        .OutrInptCls1 .input-group:hover {
            border-color: #333333;
        }

        .OutrInptCls1 .input-group.visitedRed,
        .OutrInptCls1 .input-group.visitedRed,
        .OutrInptCls1 .input-group.visitedRed {
            border-color: #e41937;
            box-shadow: 0 0 0px 1px #e41937;
        }

        .OutrInptCls1 .input-group .input-group-text {
            background-color: #ffffff;
            border: none;
        }

.MuiSvgIcon-root {
    fill: currentColor;
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    -moz-user-select: none;
}

.jss2 {
    color: #ddd;
}

.OutrInptCls1 .input-group .form-control {
    border: 0;
    border-left: 1px solid #e0e3e5;
    padding: 18.5px 14px;
    height: 56px;
    animation-name: mui-auto-fill-cancel;
    letter-spacing: inherit;
    animation-duration: 10ms;
    -webkit-tap-highlight-color: transparent;
    font-size: 1rem;
    font-family: "Georama SemiExpanded";
    /*font-family: sans-serif;*/
    font-weight: 400;
    line-height: 1.1876em;
}

    .OutrInptCls1 .input-group .form-control:focus {
        outline: none;
        box-shadow: none;
    }

.valid-feedback,
.invalid-feedback {
    position: absolute;
    bottom: -20px;
}
/*-----eye button scc start-----*/
.MuiButtonBase-root {
    color: inherit;
    border: 0;
    cursor: pointer;
    margin: 0;
    display: inline-flex;
    outline: 0;
    padding: 0;
    position: relative;
    align-items: center;
    border-radius: 0;
    vertical-align: middle;
    -moz-appearance: none;
    justify-content: center;
    text-decoration: none;
    -moz-user-select: none;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.MuiInputAdornment-root {
    height: 0.01em;
    display: flex;
    max-height: 2em;
    align-items: center;
    white-space: nowrap;
}

.MuiInputAdornment-positionEnd {
    margin-left: 8px;
}

.MuiIconButton-root {
    flex: 0 0 auto;
    color: rgba(0, 0, 0, 0.54);
    padding: 12px;
    overflow: visible;
    font-size: 1.5rem;
    text-align: center;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 50%;
}

    .MuiIconButton-root:hover {
        background-color: rgba(0, 0, 0, 0.04);
    }

.MuiIconButton-label {
    width: 100%;
    display: flex;
    align-items: inherit;
    justify-content: inherit;
}
/*-----eye button scc end-----*/
.btnLogin {
    border: 0;
    margin: 0;
    outline: 0;
    position: relative;
    align-items: center;
    text-decoration: none;
    -moz-user-select: none;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    float: right;
    padding: 8px 22px;
    font-size: 0.9375rem;
    min-width: 64px;
    box-sizing: border-box;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Georama SemiExpanded";
    /*font-family: sans-serif;*/
    font-weight: 500;
    line-height: 1.75;
    border-radius: 4px;
    text-transform: uppercase;
    color: #fff;
    background-color: #E31837;
    text-decoration: none;
    min-width: 100px;
}

    .btnLogin:hover {
        box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);
        background-color: rgb(159, 17, 38);
        color: #ffffff;
        text-decoration: none;
    }

    .btnLogin:disabled {
        color: rgba(0, 0, 0, 0.26);
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.12);
        cursor: default;
        pointer-events: none;
    }

/*--------input style 2 strat----------*/
.OutrInptCls2 {
    flex-grow: 0;
    max-width: 100%;
    flex-basis: 100%;
    padding: 12px;
}

    .OutrInptCls2 .form-group {
        margin-bottom: 1.5rem;
    }

        .OutrInptCls2 .form-group > label {
            margin: 0;
            display: flex;
            font-size: 14px;
            line-height: 1.2;
        }

        .OutrInptCls2 .form-group .form-control {
            font-size: 14px;
            color: #333;
            border-color: #f9f9f9;
            border-bottom-color: #999999;
            border-radius: 0;
        }

            .OutrInptCls2 .form-group .form-control:hover,
            .OutrInptCls2 .form-group .form-control:focus,
            .OutrInptCls2 .form-group .form-control:active,
            .OutrInptCls2 .form-group .form-control:visited {
                border-color: #e41937;
                box-shadow: inset 0px 0px 2px rgba(0,0,0,0.5);
            }

            .OutrInptCls2 .form-group .form-control.visitedRed,
            .OutrInptCls2 .form-group .form-control.visitedRed,
            .OutrInptCls2 .form-group .form-control.visitedRed {
                /*border-color: #e41937;*/
                border-bottom-color: #e41937;
                box-shadow: inset 0px 0px 2px rgba(0,0,0,0.5);
                /*box-shadow: 0 0 0px 1px #e41937;*/
            }

    .OutrInptCls2 .form-check-inline {
        font-size: 15px;
        margin-top: 5px;
        margin-right: 5px;
    }
    .OutrInptCls2 .form-check-inline:last-child {
        margin-right: 0;
    }

        .OutrInptCls2 .form-check-inline .form-check-label {
            margin-bottom: 0;
            padding-left: 21px;
            position: relative;
        }

        .OutrInptCls2 .form-check-inline .form-check-input {
            position: absolute;
            margin-top: 2px;
            margin-right: .3125rem;
            margin-left: 0;
            width: 18px;
            height: 18px;
            left: 0;
        }


/*--------input style 2 end----------*/
.valid-feedback,
.invalid-feedback {
}

.form-control-plaintext {
    font-size: 14px;
    padding: 0;
    margin: 0;
}

    .form-control-plaintext > label {
        padding: 0;
        margin: 0;
    }

.OTPResendOutrCls {
    width: auto;
    position: absolute;
    left: auto;
    top: 50px;
    margin: 0;
    padding: 0;
    right: 0;
}

    .OTPResendOutrCls > button.btnResendOTP {
        margin: 0;
        padding: 0;
        font-size: 14px;
        color: #e41937;
    }

.btnCls1 {
    border: 0;
    margin: 0;
    outline: 0;
    align-items: center;
    text-decoration: none;
    -moz-user-select: none;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    padding: 6px 22px 5px;
    font-size: 0.9375rem;
    min-width: 64px;
    box-sizing: border-box;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: 'Georama SemiExpanded';
    /*font-family: sans-serif;*/
    font-weight: 500;
    line-height: 1.75;
    border-radius: 4px;
    text-transform: uppercase;
    color: #fff;
    background-color: #E31837;
    font-size: 14px;
    min-width: 100px;
}

    .btnCls1:hover,
    .btnCls1:focus,
    .btnCls1:active {
        box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);
        background-color: rgb(159, 17, 38);
    }

    .btnCls1:disabled {
        color: rgba(0, 0, 0, 0.26);
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.12);
        cursor: default;
        pointer-events: none;
    }

.btnCls2 {
    border: 2px solid #000;
    margin: 0;
    outline: 0;
    align-items: center;
    text-decoration: none;
    -moz-user-select: none;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    padding: 4px 22px 3px;
    font-size: 0.9375rem;
    min-width: 64px;
    box-sizing: border-box;
    /*transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;*/
    transition: all 0.2s ease-in-out;
    font-family: 'Georama SemiExpanded';
    /*font-family: sans-serif;*/
    font-weight: 500;
    line-height: 1.75;
    border-radius: 4px;
    text-transform: uppercase;
    color: #333333;
    /*background-color: #E31837;*/
    font-size: 14px;
    min-width: 100px;
}

    .btnCls2:hover,
    .btnCls2:focus,
    .btnCls2:active {
        box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);
        background-color: rgb(159, 17, 38);
        color: #FFFFFF;
        border-color: rgb(159, 17, 38);
    }

    .btnCls2:disabled {
        color: rgba(0, 0, 0, 0.26);
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.12);
        cursor: default;
        pointer-events: none;
    }

.LinkbtnCls2 {
    border-color: transparent;
    background-color: transparent;
    padding: 0;
    color: #333;
}

    .LinkbtnCls2:hover,
    .LinkbtnCls2:focus,
    .LinkbtnCls2:active {
        color: rgb(159, 17, 38);
    }

    .LinkbtnCls2 svg {
        margin: -6px 2px 0px 0px;
        width: 20px;
        transition: all 0.3s ease-in-out;
    }

        .LinkbtnCls2 svg g,
        .LinkbtnCls2 svg path {
            fill: rgb(0, 0, 0);
            width: 20px;
        }

    .LinkbtnCls2:hover svg {
        /*width: 24px;*/
        /*transform: translate(-10px, 0);*/
        /*animation-name: example;
        animation-duration: 0.4s;*/
        /*animation-iteration-count: infinite;*/
        /*animation-direction: alternate;*/
        transform: translate(-5px, 0);
    }

        .LinkbtnCls2:hover svg g,
        .LinkbtnCls2:hover svg path {
            fill: rgb(159, 17, 38);
        }

@keyframes example {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-40px, 0);
    }
}

/*----------captcha css start------------*/
.divCaptchaOutr {
    width: 0;
    height: 0;
    position: relative;
}

.imgCaptcha {
    width: 250px;
    height: auto;
    transition: right 0.3s ease 0s;
    position: fixed;
    bottom: 14px;
    right: -186px;
    box-shadow: gray 0px 0px 5px;
    border-radius: 2px;
    overflow: hidden;
}
/*----------captcha css end------------*/




@media (min-width:320px) and (max-width:767px) {
    .OutrInptCls2 .form-check-inline {
        width: 100%;
    }
}
@media (min-width:480px) and (max-width:576px) {
    .mainSec {
        min-width: 400px !important;
        width: 400px !important;
    }
}

@media (min-width:320px) and (max-width:479px) {
    .mainSec {
        min-width: 300px !important;
        width: 300px !important;
    }

    .logoOutrCls {
        margin-top: 0;
    }

    .loginBox1 {
        margin: 10px 0 10px 0;
        padding: 10px 10px;
        min-height: 380px;
    }

        .loginBox1 .media-heading h2 {
            font-size: 24px;
            margin: 0;
        }

    .OutrInptCls1 {
        padding: 12px 0;
    }

        .OutrInptCls1 .input-group .form-control {
            padding: 8px 8px;
            height: 38px;
        }

    .btnCls1 {
        padding: 6px 12px;
    }

    .linksSec {
        padding: 10px 5px;
    }
}
