@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap');
html, body {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /*overflow: hidden;
    -webkit-overflow-scrolling: touch;*/
}
html {
    position: relative;
    width: 100%;
    height: 100%;
}
body {
    font-family: "Rubik", Sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.87);
    font-weight: 400;
}
body::-webkit-scrollbar {
    width: 6px !important;
}

/* Chrome Textbox Autofill Remove */

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #000 !important;
}

/* don't show the x for text inputs */

::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

/* don't show the eye for password inputs */

::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}
* {
    box-sizing: border-box;
}
h1, h2, h3, h4 {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.87);
    padding: 0;
}
h1 {
    font-size: 36px;
    margin: 20px 0;
}
h2 {
    font-size: 24px;
    margin: 20px 0;
}
h3 {
    font-size: 20px;
    margin: 0 0 5px 0;
}
h4 {
    font-size: 14px;
    margin: 0 0 5px 0;
}
a {
    color: #5241BF;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
a:hover {
    color: #ff8d00;
    transition: all 0.3s ease 0s;
}
p {
    font-size: 16px;
    margin: 0 0 10px 0;
}
.main {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../images/home-bg.svg) 0 -111px;
    background-attachment: scroll;
}
.content-panel {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    overflow-y: auto;
    z-index: 1;
    height: 100%;
    width: 100%;
}
.mainContent {
    position: relative;
    height: 100%;
    max-width: 1300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    margin: 0 auto;
}
.mainContentInner {
    padding: 20px 0;
    margin-top: 25px;
}
.eachPageContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    align-items: center;
}
.logo-container {
    width: 16.666%;
}
.logoSinglePage img {
    width: 100%;
    max-height: 40px;
    max-width: 200px;
}
.formFeildsContainer {
    width: 100%;
    position: relative;
    width: 100%;
    max-width: 450px;
    text-align: left;
    padding: 32px;
    background-color: #FFFFFF;
    border-radius: 17px 17px 17px 17px;
    box-shadow: 0 0 10px 0 rgb(181 189 190 / 28%);
}
.formContainerHeadingPurple {
    color: #5241BF;
}
.formFeildsContainer h1, .formFeildsContainer h2 {
    position: relative;
    z-index: 999;
    font-size: 22px;
    color: #fff;
    margin: 0 !important;
}
.formFeildsContainer .success-msg {
    color: #05AF66;
}
.eachSec {
    margin: 0 0 24px 0;
    position: relative;
}
.bottomSec {
    margin: 0;
}
.eachTextarea {
    background: none;
    border-width: 0;
    color: #484747;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    padding: 12px 10px;
    margin: 0 auto;
    resize: none;
    width: 100%;
    outline: none;
    border-radius: 8px 8px 8px 8px;
    background-color: #fafafa;
    border: 1px solid #eaeaea;
}
.eachTextLine {
    padding-right: 25px;
}
.resendContainer {
    position: relative;
    background-color: #f0f0f0;
    padding: 16px;
    position: relative;
    border: 1px solid #ececec;
    border-radius: 5px;
    margin: 20px 0 0 0;
}
.resendContainer.arrowResend:after {
    content: " ";
    position: absolute;
    left: 70px;
    top: -20px;
    border-top: none;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 20px solid #f1f2f3;
}
.resendContainer.arrowForgot:after {
    content: " ";
    position: absolute;
    left: 220px;
    top: -20px;
    border-top: none;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 20px solid #f1f2f3;
}
.btnClose {
    height: 16px;
    width: 16px;
    position: absolute;
    right: 0;
    top: 2px;
    cursor: pointer;
}
.btnClose:before, .btnClose:after {
    position: absolute;
    right: 8px;
    top: 0;
    content: "";
    height: 16px;
    width: 2px;
    background-color: #494949;
}
.btnClose:before {
    transform: rotate(45deg);
}
.btnClose:after {
    transform: rotate(-45deg);
}

/*      -------------------  Check Box CSS Start  -------------------      */

.container {
    display: inline-block;
    position: relative;
    /* padding-left: 24px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}
.spaceSpan {
    margin: 0 5px;
}

/* Hide the browser's default checkbox */

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    left: 0;
}
.checkmark {
    /* position: absolute;
    top: 0;
    left: 0; */
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    width: 20px;
    margin-right: 8px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #2c78e0;
    border-radius: 2px;
    transition: all 0.1s ease;
    position: relative;
}

/* On mouse-over, add a grey background color */

.checkmark:hover {
    box-shadow: 0 0 3px 3px #d9d9d9;
}

/* When the checkbox is checked, add a blue background */

input:checked~.checkmark {
    background-color: #5241BF;
    transition: all 0.1s ease;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.container .checkLabel {
    display: inline-block;
    vertical-align: middle;
    color: #5241BF;
    font-size: 16px;
}
.button {
    display: inline-block;
    vertical-align: text-bottom;
    border-radius: 3px;
    border: none;
    text-align: center;
    padding: 0 16px;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1;
    height: 36px;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: content-box;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 5px;
    /*outline: none;*/
}
.button:first-child {
    margin-left: 0;
}
.button:last-child {
    margin-right: 0;
}
.buttonblue {
    background-color: #5743D9;
    color: #FFFFFF;
    display: inline-block;
    vertical-align: middle;
}
.buttonblue:hover, .buttonblue:focus {
    /* background-color: #1256b4; */
}
.disabled-button {
    background-color: #e1e1e1;
    color: #858585;
    cursor: default;
    display: inline-block;
    vertical-align: middle;
}
.error-message {
    color: #f00;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    margin-top: 12px;
    /* max-width: 230px; */
}
.text_align_center {
    text-align: center;
    width: 100%;
}
.pos_relative {
    position: relative;
}
.passwordResetContainer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
}

/*------- Menu bar -------*/

.top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
    /* padding: 1em; */
    padding: 20px 0;
}
.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.87);
}
.menu>li {
    padding: 8px 20px;
    position: relative;
    white-space: nowrap;
    transition: all .2s linear;
    font-size: 16px;
    color: #5B5D63;
}
.menu>li:hover {
    color: #6471BF;
    cursor: pointer;
    transition: all .2s linear;
}
.menu>li:hover:after {
    content: ' ';
    position: absolute;
    width: 50px;
    background-color: #6471BF;
    height: 2px;
    width: 40px !important;
    transform: translate(-50%, -50%);
    left: 50%;
    bottom: 0;
    transition: all .2s linear;
}
.menu-button-container {
    display: none;
    height: 30px;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
}
#menu-toggle {
    display: none;
}
.menu-button, .menu-button::before, .menu-button::after {
    display: block;
    background-color: rgba(0, 0, 0, 0.87);
    position: absolute;
    height: 2.5px;
    width: 20px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}
.menu-button::before {
    content: '';
    margin-top: -8px;
}
.menu-button::after {
    content: '';
    margin-top: 8px;
}
#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0;
    transform: rotate(45deg);
}
#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0;
    transform: rotate(-45deg);
}

/*      -------------------  Check Box CSS End  -------------------      */

@media screen and (max-width: 949px) {
    .logo-container {
        width: auto;
    }
    .formFeildsContainer {
        /* margin: 0 auto; */
        min-height: auto;
    }
    .noMobile {
        display: none;
    }
    .menu-button-container {
        display: flex;
    }
    .menu {
        position: absolute;
        top: 0;
        margin-top: 75px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    #menu-toggle~.menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        color: rgba(255, 255, 255, 0);
        content-visibility: hidden;
        pointer-events: none;
    }
    #menu-toggle:checked~.menu li {
        border: 1px solid #738AB3;
        height: 2.5em;
        padding: 0.5em;
        color: rgba(255, 255, 255, 1);
        content-visibility: visible;
        pointer-events: auto;
    }
    .menu>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: #6471bf;
        cursor: pointer;
        transition: all .2s linear;
    }
    .menu>li:not(:last-child) {
        border-bottom: 1px solid #738AB3;
    }
    .menu>li:hover {
        background-color: #ffffff;
        color: #323133 !important;
        transition: all .2s linear;
    }
    .menu>li:hover:after {
        background-color: transparent;
    }
}
@media screen and (max-width: 568px) {
    img {
        width: 100%;
        max-width: 400px;
    }
}