/* =============================Common starts */
html {
    font-size: 7px; /* should be in px */
    --color-white: #fff;
    --color-black: #000;
    --color-text: rgba(23, 37, 78, 0.7);
    --color-heading: #17254e;
    --color-violet: #481d72;
    --color-violet-2: #101456;
    --color-violet-3: #5c3782;
    --color-border-color: #d5d5d5;
    --color-dark-blue: #19224c;
    --color-beige: #16a7a7;
    --color-orange: #ff872e;
    --color-purple: #C81A78;
    --color-red: #ff2e2e;
    --color-maroon: #df5858;
    --color-grey: #343d48;
    --color-light-grey: #d1d1d1;
    --color-grey-2: #5b5f72;
    --color-grey-3: #f2eff5;
    --color-grey-4: #f2f2f2;
    --color-dark-grey: #270f3e;
}

@media (min-width: 1600px) {
    html {
        font-size: 8.5px; /* should be in px */
    }
}

@media (min-width: 1900px) {
    html {
        font-size: 10px; /* should be in px */
    }
}

@font-face {
    font-family: "sf-black";
    src: url(../../fonts/SF-Pro-Display-Black.otf);
}

@font-face {
    font-family: "sf-Bold";
    src: url(../../fonts/SF-Pro-Display-Bold.otf);
}

@font-face {
    font-family: "sf-Heavy";
    src: url(../../fonts/SF-Pro-Display-Heavy.otf);
}

@font-face {
    font-family: "sf-LightItalic";
    src: url(../../fonts/SF-Pro-Display-LightItalic.otf);
}

@font-face {
    font-family: "sf-Medium";
    src: url(../../fonts/SF-Pro-Display-Medium.otf);
}

@font-face {
    font-family: "sf-Regular";
    src: url(../../fonts/SF-Pro-Display-Regular.otf);
}

@font-face {
    font-family: "sf-Semibold";
    src: url(../../fonts/SF-Pro-Display-Semibold.otf);
}

@font-face {
    font-family: "sf-Thin";
    src: url(../../fonts/SF-Pro-Display-Thin.otf);
}

@font-face {
    font-family: "sf-Ultralight";
    src: url(../../fonts/SF-Pro-Display-Ultralight.otf);
}

@font-face {
    font-family: "Roboto-Regular";
    src: url(../../fonts/Roboto-Regular.otf);
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url(../../fonts/Roboto-Regular.eot);
    src: url(../../fonts/Roboto-Regular.woff) format('woff'), url(../../fonts/Roboto-Regular.ttf) format('truetype'), url(../../fonts/Roboto-Regular.svg) format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--color-text);
    font-family: Muli;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    counter-reset: section;
    font-family: "sf-Regular";
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

    *:focus {
        outline: none;
    }

.ul-reset {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

.btn-disable {
    opacity: 0.3;
    cursor: auto;
    pointer-events: none;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

*.full-width {
    width: 100% !important;
}

img {
    max-width: 100%;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
}

a {
    text-decoration: none;
}

p, h1, h2, h3, h4, h5, h6 {
    margin-block-start: 0;
    margin-block-end: 0;
}

.global-width {
    width: 100%;
    padding: 0 25px; /* should be in px */
    margin: 0 auto;
}

.big-input {
    display: flex;
    height: 8rem;
    width: 100%;
    align-items: center;
    padding: 0 15px;
    border-radius: 3px;
    border: 1px solid #ebecee;
    font-size: 19px;
    box-shadow: none;
    margin-top: 17px;
    color: #39274a;
    max-width: 420px;
}

.medium-input {
    display: flex;
    height: 6rem;
    width: 100%;
    align-items: center;
    padding: 0 3.7rem;
    border-radius: 10px;
    border: solid 1.5px rgba(43, 32, 54, 0.28);
    font-size: 24px;
    font-family: "sf-Thin";
    color: var(--color-violet-2);
}

.navigation-button-wrap {
    display: flex;
    justify-content: space-between;
}

    .navigation-button-wrap .navigation-button {
        max-width: 49%;
    }

        .navigation-button-wrap .navigation-button.small-btn .navigation-button {
            height: 60px;
            font-size: 17px;
            margin: 0 10px;
            padding: 0 2.3rem;
            width: auto;
            min-width: 136px;
        }

            .navigation-button-wrap .navigation-button.small-btn .navigation-button:first-child {
                margin-left: 0;
            }

            .navigation-button-wrap .navigation-button.small-btn .navigation-button:last-child {
                margin-right: 0;
            }

    .navigation-button-wrap.center-aligned {
        justify-content: center;
        width: 100%;
    }

        .navigation-button-wrap.center-aligned .navigation-button:first-child {
            margin-right: 9px;
        }

        .navigation-button-wrap.center-aligned .navigation-button:last-child {
            margin-left: 9px;
        }

.navigation-button {
    display: flex;
    width: 22.4rem;
    height: 8rem;
    padding: 0 4rem;
    border-radius: 5px;
    font-size: 2.4rem;
    border: 0;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
}

.login-button {
    background: #c81a78;
    color: #fff;
    height: 48px;
    border: 0;
    vertical-align: middle;
    border-radius: 3px;
    padding: 0 25px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
}

    .login-button:hover {
        background: #EB0085;
        box-shadow: 1px 1px 15px 1px #f9a7ae;
        cursor: pointer;
    }

    .login-button .image {
        margin-left: 5px;
    }




@media screen and (min-width: 768px) {
    .navigation-button {
        padding: 0 2rem;
    }
}

@media screen and (min-width: 1200px) {
    .navigation-button {
        padding: 0 4rem;
    }
}

.navigation-button:before,
.navigation-button:after {
    vertical-align: middle;
}

.navigation-button.signup-button {
    background-color: var(--color-purple);
    color: var(--color-white);
}

    .navigation-button.signup-button:after {
        display: inline-block;
        content: "";
        width: 21.1px;
        height: 17.6px;
        background: url(../../assets/common/images/employer-portal/right-arrow.png) no-repeat center/100% auto;
        vertical-align: middle;
        margin-left: 3px;
        transition: all 0.1s linear;
    }

.link-2 {
    font-size: 16px;
    color: #887d92;
    cursor: pointer;
    border-bottom: 1px solid var(--color-beige);
}

.remember-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    max-width: 420px;
}

.link-2.no-line {
    border-bottom: 0 none;
    color: #c81a78;
    font-weight: bold;
    font-size: 15px
}

.bold-text {
    font-family: "sf-Bold";
}

.position-relative {
    position: relative;
}

@media screen and (min-width: 768px) {
    .global-width {
        padding: 0 40px; /* should be in px */
    }

    .mobile-only {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .global-width {
        max-width: 1194px; /* should be in px */
        padding: 0 50px;
    }
}

@media (min-width: 1600px) {
    .global-width {
        max-width: 1428px; /* should be in px */
    }
}

@media (min-width: 1900px) {
    .global-width {
        max-width: 1662px; /* should be in px */
    }
}

@media screen and (max-width: 767px) {
    .tab-n-above {
        display: none;
    }
}

.common-button {
    display: flex;
    height: 8rem;
    padding: 0 2rem;
    cursor: pointer;
    border-radius: 6px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .common-button {
        font-size: 2rem;
        padding: 0 1rem;
    }
}

@media (min-width: 1200px) {
    .common-button {
        padding: 0 2rem;
    }
}

.hide {
    display: none;
}

.main-container {
    min-height: 300px;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 61.5rem);
    padding-bottom: 5.9rem;
}

.header {
    position: relative;
    width: 100%;
    z-index: 2;
    padding-top: .3rem;
}

@media (max-width: 1199px) {
    .header {
        height: 100px;
        background-color: var(--color-white);
        box-shadow: 0 3px 26px 0 rgba(0, 0, 0, 0.04);
    }

        .header .menu-wrap {
            position: relative;
            position: relative;
            height: 25px; /* should be in px */
            order: 2;
            margin-left: 25px; /* should be in px */
            margin-top: 3px; /* should be in px */
        }

        .header .main-menu {
            position: absolute;
            right: 0;
            top: 5.9rem;
            background: var(--color-white);
            max-height: 0;
            overflow: hidden;
            min-width: 155px;
            box-shadow: 0 0px 60px 0 rgba(0, 0, 0, 0.09); /* should be in px */
            transition: .2s linear;
        }

            .header .main-menu.signup-login {
                position: static;
                max-height: none;
                box-shadow: none;
                min-width: auto;
            }

            .header .main-menu .list-item .link-item {
                display: inline-block;
                padding: 8px 20px; /* should be in px */
                text-decoration: none;
                width: 100%;
                white-space: nowrap;
                font-weight: 500;
                position: relative;
                color: var(--color-grey-2);
                font-size: 1.8rem;
            }

                .header .main-menu .list-item .link-item:hover {
                    color: var(--color-violet);
                }

                    .header .main-menu .list-item .link-item:hover:before {
                        content: '';
                        position: absolute;
                        left: 0;
                        width: 5px; /* should be in px */
                        height: 24px; /* should be in px */
                        top: 50%;
                        background: var(--color-violet);
                        transform: translateY(-50%);
                    }

            .header .main-menu .list-item:first-child .link-item {
                padding-top: 20px; /* should be in px */
            }

                .header .main-menu .list-item:first-child .link-item:hover:before {
                    top: calc(50% + 7px); /* should be in px */
                }


            .header .main-menu .list-item:last-child .link-item {
                padding-bottom: 30px; /* should be in px */
            }

                .header .main-menu .list-item:last-child .link-item:hover:before {
                    top: calc(50% - 14px); /* should be in px */
                }
}

@media (max-width: 767px) {
    .header {
        height: 68px;
    }

        .header .menu-wrap {
            margin-left: 15px !important; /* should be in px */
        }

        .header .main-menu {
            top: 3.7rem;
        }
}

.header .global-width {
    display: flex;
    justify-content: space-between;
}

.header .logo {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .signup-login .global-width {
        display: flex;
        flex-direction: column;
    }

    .signup-login .left-section {
        order: 2;
    }

    .signup-login .right-section {
        order: 1;
        margin-bottom: 50px;
    }
}

@media (max-width: 1199px) {
    .header .logo {
        margin-top: 2.9rem;
    }
}


@media (max-width: 767px) {
    .header .logo {
        margin-top: 22px !important;
    }

        .header .logo .image {
            width: 121px;
        }
}

.header .right-section {
    display: flex;
    padding-top: 5rem;
    position: relative;
}

@media (max-width: 1199px) {
    .header .right-section {
        padding-top: 3rem;
    }
}

@media (max-width: 767px) {
    .header .right-section {
        padding-top: 17px;
    }
}

@media screen and (min-width: 1200px) {

    .header .main-menu {
        display: flex;
        flex-direction: row;
        margin-top: 0.6rem;
    }

        .header .main-menu .list-item.active .link-item {
            color: var(--color-violet);
        }
}

.header.header-2 .logo {
    display: inline-block;
}

.header.header-2 .right-section .main-menu .list-item:before {
    left: auto;
    right: 0;
}

.header.header-2 .main-menu .list-item.help {
    width: 107px;
}

@media (min-width: 768px) {
    .header.header-2 .main-menu .list-item.help {
        width: 121px;
    }
}

.header.header-2 .main-menu .list-item:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #d6d6d6;
}

.header.header-2 .main-menu .list-item {
    position: relative;
}

    .header.header-2 .main-menu .list-item .label {
        display: inline-block;
        width: 100%;
        font-size: 18px;
        font-family: "sf-Thin";
        line-height: 1.17;
        letter-spacing: 0.9px;
        color: var(--color-violet);
        margin-bottom: 0.8rem;
    }

    .header.header-2 .main-menu .list-item .detail.contact {
        font-size: 18px;
        line-height: 1.17;
        letter-spacing: 0.9px;
        color: var(--color-beige);
        text-transform: uppercase;
    }

    .header.header-2 .main-menu .list-item .detail {
        display: inline-block;
        width: 100%;
        font-size: 2rem;
        font-family: "sf-Bold";
        line-height: 1.2;
        color: var(--color-violet);
    }

.login-btn {
    display: flex;
    width: 13.2rem;
    height: 5.9rem;
    justify-content: center;
    align-items: center;
    border-radius: 3px; /* should be in px */
    background: var(--color-violet);
    margin-left: 1.5rem;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
    transition: .1s all linear;
}

@media (max-width: 767px) {
    .login-btn {
        width: 56px;
        height: 26px;
        margin-left: 1.5rem;
        font-size: 8px;
    }

        .login-btn:hover {
            transform: scale(1.05)
        }

    .header.header-2 .main-menu .list-item .label {
        font-size: 15px;
    }

    .header.header-2 .main-menu .list-item .detail.contact {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    .login-btn {
        width: 16.1rem;
        font-size: 1.6rem;
    }
}

::placeholder {
    color: #101456;
    opacity: 0.6;
}

:-ms-input-placeholder {
    color: #101456;
}

::-ms-input-placeholder {
    color: #101456;
}

.main-container.signup-login .global-width {
    max-width: 1140px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-top: 12rem;
}

.signup-login .left-section {
    text-align: center;
}

.signup-login .right-section {
    text-align: center;
    margin-top: -13px;
}

    .signup-login .right-section .big-input {
        width: 100%;
        max-width: 420px;
    }

    .signup-login .right-section .text {
        font-size: 4rem;
        line-height: 1.2;
        color: var(--color-violet);
        margin-bottom: 1.7rem;
    }

.signup-login.signup .right-section .text {
    margin-bottom: 3.9rem;
}

.text-1 {
    font-size: 16px;
}

.signup-login.login .text-1 {
    margin-bottom: 3.4rem;
}

.text-1 .link-2 {
    margin-left: 1.3rem;
}

.signup-login .sub-text {
    font-size: 16px;
    line-height: 1.25;
    color: #101456;
    margin-bottom: 4rem;
}

.signup-login .navigation-button-wrap {
    justify-content: center;
    margin-bottom: 3.3rem;
}

.signup-login .password-wrap {
    padding: 2.6rem 0 3.7rem;
}

.signup-login.login .password-wrap {
    padding-bottom: 2.2rem;
}

.confirm-password-wrap .back,
.forget-password-wrap .back {
    margin-bottom: 1.5rem;
    padding-left: 21px;
    display: inline-block;
    background: url("../../assets/common/images/employer-portal/back-green.png") no-repeat left 5px;
}

.confirm-password-wrap .signup-button {
    width: 33.4rem;
    max-width: 100%;
}

.signup-login.confirm-password-wrap .right-section .text {
    margin-bottom: 1.9rem;
}

.alert {
    width: 100%;
    min-height: 6.1rem;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.19;
    display: flex;
    align-items: center;
    padding: 1.5rem 1.5rem;
    font-family: "sf-Thin";
}

    .alert:before {
        content: "";
        display: inline-block;
        width: 2.7rem;
        height: 2.7rem;
        margin-right: 1.3rem;
        background: url("./images/info-green.png") no-repeat center/cover;
    }

    .alert.green {
        background-color: #e7f6f6;
        color: #0f1556;
    }

.confirm-password-wrap .right-section .alert {
    margin-bottom: 3.9rem;
}

.signup-login.confirm-password-wrap .left-section {
    padding-top: 9rem;
}

.signup-login.forget-password-wrap .right-section .text {
    font-size: 16px;
}

.forget-password-wrap .text .bold-text {
    font-size: 4rem;
    margin-bottom: 2.2rem;
}

.forget-password-wrap .email {
    margin-bottom: 26px;
}

.forget-password-wrap .signup-button {
    width: 35rem;
    max-width: 100%;
}

.radio-label {
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    color: var(--color-violet-2);
    height: 31px;
    cursor: pointer;
    display: flex;
    max-width: 100%;
    align-items: center;
}

    .radio-label:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 1px solid var(--color-beige);
        background: var(--color-white);
        transform: translateY(-50%);
    }

.radio-input:checked + .radio-label:before {
    background: url("../../assets/common/images/employer-portal/tick-white.png") no-repeat center var(--color-beige);
}

.check-label {
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    color: var(--color-violet-2);
    height: 31px;
    cursor: pointer;
    display: flex;
    max-width: 100%;
    align-items: center;
}

    .check-label:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 20px;
        height: 20px;
        border-radius: 5px;
        background: #EB0085;
        transform: translateY(-50%);
    }

.check-input:checked + .check-label:before {
    background: url("./images/tick-white.png") no-repeat center var(--color-beige);
}

.signup-login.login .remember-wrap {
    margin-bottom: 2.4rem;
}

.signup-login .name-wrap {
    padding: 2.6rem 0 2.7rem;
}

@media screen and (min-width: 768px) {
    .main-container.signup-login .global-width {
        padding-top: 18rem;
        flex-direction: row;
    }

    .signup-login .left-section {
        width: 48%;
        max-width: 668px;
    }

    .signup-login .right-section {
        width: 48%;
        max-width: 538px;
        text-align: left;
    }

        .signup-login .right-section .text .bold-text {
            display: inline-block;
            width: 100%;
        }

    .signup-login .navigation-button-wrap {
        justify-content: space-between;
    }
}

@media screen and (min-width: 1600px) {
    .signup-login .sub-text {
        font-size: 18px;
    }

    .alert {
        font-size: 16px;
    }

    .main-container.signup-login .global-width {
        max-width: 1262px;
    }

    .signup-login.forget-password-wrap .right-section .text {
        font-size: 18px;
    }

    .text-1,
    .radio-label,
    .check-label,
    .link-2,
    .signup-login .sub-text {
        font-size: 16px;
        color: #39274a;
    }
}

@media screen and (min-width: 1900px) {
    .main-container.signup-login .global-width {
        max-width: 1485px;
    }
}


.page {
    background: #f8f8f8;
}

header {
    display: flex;
    justify-content: space-between;
    letter-spacing: .1rem;
    background-color: #ffffff;
}

    header .logo {
        display: inline-block;
        vertical-align: middle;
        margin-top: 0;
    }

    header .in-block {
        vertical-align: top;
        margin-top: 1px;
    }

        header .in-block i {
            background: rgba(200, 26, 120, 0.12);
            border-radius: 3px;
            display: inline-block;
            width: 20px;
            margin-left: 4px;
            vertical-align: text-bottom;
        }

        header .in-block .cname {
            color: #3e3e3e;
            font-size: 15px;
        }

    header .yoda-quoter-logo {
        width: 50%;
        float: left;
    }

        header .yoda-quoter-logo img {
            max-width: 165px;
            margin: 0 20px 0 5px;
            margin-left: 5px;
        }

        header .yoda-quoter-logo .company-info {
            padding: 0 18px;
            display: inline-block;
            color: #887d92;
            border-left: 1px solid #ebecee;
            font-size: 2.1rem;
            vertical-align: middle;
            margin-top: 3px;
            width: 50%;
        }

            header .yoda-quoter-logo .company-info span {
                display: block;
                font-size: 16px;
                line-height: 20px;
                color: #887d92;
            }

                header .yoda-quoter-logo .company-info span.yoda-user {
                    display: inline-block;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background: #ebecee;
                    font-size: 13px;
                    color: #481d72;
                    font-weight: bold;
                    text-align: center;
                    line-height: 40px;
                    vertical-align: top;
                    margin-right: 15px;
                    margin-top: 1px;
                }

    header .yoda-contact {
        width: 50%;
        font-size: 2.25rem;
        float: right;
        margin-top: 4px;
    }

        header .yoda-contact .expert {
            background: url('../../assets/common/images/employer-portal/yoda-help.png') no-repeat right center;
            padding-right: 53px;
            float: right;
            border-left: 1px solid #ebecee;
            padding-left: 22px;
        }

        header .yoda-contact .yoda-point {
            float: right;
            padding-right: 20px;
            padding-top: 4px;
        }

            header .yoda-contact .yoda-point img {
                vertical-align: middle;
                margin-left: 10px;
            }

        header .yoda-contact span {
            display: block;
            text-align: right;
            line-height: normal;
            color: #39274a;
            font-size: 2.1rem;
        }

            header .yoda-contact span.yoda-point {
                display: inline-block;
            }

            header .yoda-contact span.help {
                color: #887D92;
                opacity: .6;
            }

            header .yoda-contact span.talkto-expert {
                color: #c81a78;
                font-weight: bold;
            }

            header .yoda-contact span.user {
                display: inline-block;
            }

section .sign-up {
    padding-top: 120px;
    display: flex;
    justify-content: space-between;
    font-family: 'Roboto-Regular';
}

@media screen and (max-width: 767px) {
    section .sign-up {
        display: block;
    }
}

section .sign-up .sign-up-pic {
    flex: 1;
    text-align: center;
    padding-top: 10%;
}

@media screen and (max-width: 767px) {
    section .sign-up .sign-up-pic {
        margin-bottom: 30px;
    }
}

section .sign-up .sign-up-form {
    padding-left: 5.75%;
    flex: 1;
}

@media screen and (max-width: 767px) {
    section .sign-up .sign-up-form {
        padding-left: 0;
    }
}

section .sign-up .sign-up-form h2 {
    font-size: 32px;
    color: #481d72;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
    section .sign-up .sign-up-form h2 {
        margin-right: 5%;
        text-align: center;
    }
}

section .sign-up .sign-up-form p {
    font-size: 16px;
    color: #101456;
}

    section .sign-up .sign-up-form p span a {
        color: #c81a78;
        font-weight: bold;
    }

section .sign-up .sign-up-form input[type="email"], section .sign-up .sign-up-form input[type="password"] {
    border: 1px solid #ebecee;
    padding: 17px 20px;
    font-size: 19px;
    color: #39274a;
    max-width: 420px;
    margin-top: 20px;
    width: 100%;
}

    section .sign-up .sign-up-form input[type="email"]:placeholder, section .sign-up .sign-up-form input[type="password"]:placeholder {
        font-weight: normal;
    }

section .sign-up .sign-up-form input[type="text"], section .sign-up .sign-up-form input[type="password"] {
    border: 1px solid #ebecee;
    padding: 17px 36px 17px 20px;
    font-size: 19px;
    color: #39274a;
    max-width: 420px;
    margin-top: 20px;
    width: 100%;
}

    section .sign-up .sign-up-form input[type="text"]:placeholder, section .sign-up .sign-up-form input[type="password"]:placeholder {
        font-weight: normal;
    }

@media screen and (max-width: 767px) {
    section .sign-up .sign-up-form {
        display: block;
    }
}

section .sign-up .sign-up-form .action-buttons {
    padding-top: 40px;
}

    section .sign-up .sign-up-form .action-buttons p {
        font-size: 16px;
        color: #101456;
        margin-top: 20px;
        margin-right: 30%;
        font-weight: 500;
    }

        section .sign-up .sign-up-form .action-buttons p span {
            color: #c81a78;
        }

@media screen and (max-width: 767px) {
    section .sign-up .sign-up-form .action-buttons p {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

section .sign-up .sign-up-form .action-buttons button {
    background: #c81a78;
    color: #fff;
    height: 48px;
    border: 0;
    display: flex;
    align-items: center;
    border-radius: 3px;
    padding: 0 25px;
    font-weight: bold;
    font-size: 16px;
}

    section .sign-up .sign-up-form .action-buttons button img {
        vertical-align: middle;
        margin-left: 5px;
    }

    section .sign-up .sign-up-form .action-buttons button:hover {
        background: #EB0085;
        box-shadow: 1px 1px 15px 1px #f9a7ae;
        cursor: pointer;
    }

p {
    font-size: 16px;
    color: #39274a;
}

.forgot-pwd {
    margin-top: 5px;
}


.new-button {
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    background-color: #f8f8f8;
    color: #481d72;
    margin: 0 0 25px;
    width: auto;
}

    .new-button:last-child {
        margin-right: 0;
    }

    .new-button.plain {
        background: transparent;
        color: #c81a78;
        display: flex;
        align-items: center;
        font-family: 'sf-Medium';
        margin-bottom: 22px;
    }

    .new-button.left .image {
        margin-right: 4px;
        width: 13px;
    }

.back-button {
    font-size: 13px;
}

.navigation-button-wrap.validation-error .text-danger {
    color: red;
    position: absolute;
    top: -20px;
}

    .navigation-button-wrap.validation-error .text-danger ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

.validation-msg {
    position: relative;
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #39274a;
}

    /* Hide the browser's default checkbox */
    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 4px;
    border: 1px solid #c81a78;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #c81a78;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #c81a78;
}

/* 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: 1px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
