﻿
body {
    background-color: #f5f5fa;
}

.hide {
    display: none;
}

.trusted-device-option {
    color: black;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0px;
    text-align: center;
    font-weight: bold;
}

.trust {
    text-align-last: left;
    width: 315px;
    margin: 32px auto;
}

.trust-label {
    cursor: pointer;
}

    .trust-label > input {
        cursor: pointer;
    }

.spaced-item {
    margin-top: 32px;
}

.main-container {
    display: flex;
    margin-top: 20px;
}

.email-hint {
    font-size: 12px;
}

.main-container > .main-content {
    background-color: white;
    margin: auto;
    display: flex;
    padding: 28px 18px;
    max-width: 700px;
    border-radius: 8px;
}

.img-container > img {
    width: 200px;
}


.content-title {
    color: #313435;
    font-family: Open Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.content-description {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    color: #54585a;
}

.content-description-bubble {
    color: #313435;
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.1px;
    border-radius: 8px;
    background: rgba(107, 227, 231, 0.20);
    padding: 10px;
}

/*form style*/
.main-form {
    margin-left: 32px;
}

.button {
    color: white;
    background: #034EA2;
    border: solid 0px transparent;
    height: 52px;
    width: 151px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 30.5px;
    outline: none;
}

    .button:hover {
        background-color: #1c64b6;
        color: white;
    }

.anchor-button {
    display: table;
    position: relative;
}

    .anchor-button > a.button,
    .anchor-button > a.lock-button {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        padding: 1px 6px;
        cursor: pointer;
        border: none;
        font-weight: 600;
        background-clip: border-box;
        outline: none;
        text-decoration: none;
    }


::placeholder {
    color: #a7afb3;
    opacity: 1; /* Firefox */
}

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

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

.control-container {
    background-color: #ffffff;
    border-style: solid;
    border-color: #E9E9F0;
    border-width: 1px;
    overflow: hidden;
    border-radius: 8px;
}

.control-container.spaced-item.email-input-container {
    border-style: solid;
    border-color: #c1c1c6;
    border-radius: 8px;
    border-width: 1px 1px 1px 1px;
}

    .control-container.spaced-item.email-input-container:focus-within {
        border-color: rgba(3, 78, 162, 0.70);
    }

.control-container.spaced-item.password-input-container {
    border: 2px solid #C8CDD0;
    border-style: solid;
    border-width: 2px;
    border-radius: 8px;
}

.control-container.spaced-item.password-input-container.focus {
    border-color: rgba(3, 78, 162, 0.70);
}

.control-container > * {
    padding: 10px;
}

.control-container.in-error {
    border: 1px solid #EE2737;
}

.error-sections-container h6 {
    margin-bottom: 6px;
}

span.create-password-label {
    color: #034EA2;
    font-size: 12px;
    font-weight: 400;
}

.control-container > .cb-form-control > label {
    display: block;
    font-size: 12px;
    line-height: 17px;
    position: relative;
}

    .control-container > .cb-form-control > label > input {
        display: block;
        border: none;
        padding: 0px;
        margin-top: 15px;
        width: 100%;
        font-size: 16px;
        line-height: 23px;
        outline: none;
    }

    .control-container > .cb-form-control > label > .cb-input-action {
        color: #034ea2;
        text-decoration: underline;
        background: transparent;
        border: solid 0px transparent;
        cursor: pointer;
        font-weight: 600;
        border-radius: 30.5px;
        position: absolute;
        bottom: 3px;
        right: 0px;
    }

.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    max-width: 500px;
    border-radius: 8px;
}

.modal-close-span {
    align-self: flex-end;
}

    .modal-close-span:hover, .modal-close-span:focus {
        cursor: pointer;
    }

.user-migrated-email-sent-content {
    width: 100%;
    line-height: 22px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.15px;
}

/*Desktop*/
@media (min-width: 769px) {
    .desktop-max-grid {
        box-sizing: border-box;
        max-width: 1300px;
        padding: 0 50px;
        margin-left: auto;
        margin-right: auto;
    }

    .main-content {
        flex-basis: 66.66666666666667%;
    }

    .toast {
        max-width: 50%;
    }

    .toast-error, .toast-success, .toast-resendCode {
        max-width: 50%;
    }
}

/*Tablet*/
@media (min-width: 580px) and (max-width: 768px) {
    .main-content {
        flex-basis: 83.3333333333333333%;
    }

    .toast {
        max-width: 50%;
    }

    .toast-error, .toast-success, .toast-resendCode {
        max-width: 50%;
    }
}

/*Mobile*/
@media (max-width: 579px) {
    .main-container {
        padding-left: 11px;
        padding-right: 11px;
    }

    .main-content {
        flex-basis: 100%;
        margin: 0 11px;
        flex-direction: column;
        align-items: center;
    }

        .main-content > .img-container {
            width: 120px;
        }

            .main-content > .img-container > img {
                width: 120px;
            }

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

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

    .button {
        width: 100%;
    }

    .anchor-button {
        width: 100%;
    }

    .main-form {
        text-align: center;
        margin: 20px 0 0 0;
        width: 100%;
    }

        .main-form > .control-container {
            text-align: left;
        }

        .main-form > button[type="submit"] {
            margin: 28px auto 0 auto;
        }

    .toast {
        max-width: 100%;
        margin: 0 10px;
    }

    .modal-content {
        width: 75%;
        padding: 20px 24px;
    }

    .modal-close-span {
        display: none;
    }
}


/*Error section*/

.error-sections-container {
    padding: 0 10px;
}

.error-section {
    display: flex;
}

.error-section:not(:last-child) {
    margin-bottom: 3px;
}

.error-sections-container .error-section:first-child {
    padding-top: 9px;
}

.error-sections-container .error-section:last-child {
    padding-bottom: 9px;
}

.error-container {
    background-color: #F1D3D6;
    color: #EE2737;
}

.error-message {
    font-size: 14px;
    line-height: 23px;
}

.control-container.in-error > .error-container {
    display: block;
}

.control-container:not(.in-error) > .error-container {
    display: none;
}

.error-container > .error-message.in-error {
    display: block;
}

.error-container > .error-message:not(.in-error) {
    display: none;
}

.icon {
    width: 16px;
    height: 16px;
    text-align: center;
    display: inline-block;
    margin-right: 8px;
}

.icon .valid, .icon .invalid {
    vertical-align: middle;
}

.error-text {
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
}

.icon > .unchecked, .icon > .valid, .icon > .invalid {
    display: none;
}

#heightCharactersCheck:not(.submitted):not(.valid) .icon .unchecked {
    display: inline-block;
}

#heightCharactersCheck.invalid.submitted > .icon > .invalid {
    display: inline-block;
}

#heightCharactersCheck.valid > .icon > .valid {
    display: inline-block;
}

#lowerAndUpperCheck:not(.submitted):not(.valid) > .icon > .unchecked {
    display: inline-block;
}

#lowerAndUpperCheck.invalid.submitted > .icon > .invalid {
    display: inline-block;
}

#lowerAndUpperCheck.valid > .icon > .valid {
    display: inline-block;
}

#numberCheck:not(.submitted):not(.valid) > .icon > .unchecked {
    display: inline-block;
}

#numberCheck.invalid.submitted > .icon > .invalid {
    display: inline-block;
}

#numberCheck.valid > .icon > .valid {
    display: inline-block;
}

#specialCharactersCheck:not(.submitted):not(.valid) > .icon > .unchecked {
    display: inline-block;
}

#specialCharactersCheck.invalid.submitted > .icon > .invalid {
    display: inline-block;
}

#specialCharactersCheck.valid > .icon > .valid {
    display: inline-block;
}

/* Toaster */
.toast-container {
    display: flex;
    justify-content: center;
}

.toast {
    position: fixed;
    z-index: 3;
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    top: 12px;
    border-radius: 8px;
    color: white;
    background-color: #56A437;
    padding: 10px 15px;
}

.toast-icon {
    height: 16px;
    width: 16px;
    margin-right: 16px;
}

.toast-description {
    font-size: 16px;
    line-height: 22px;
    color: white;
    font-weight: 600;
}

#toaster.is-visible {
    display: flex;
}

#toaster:not(.is-visible) {
    display: none;
}

#toaster-resendCode.is-visible {
    display: flex;
}

#toaster-resendCode:not(.is-visible) {
    display: none;
}

#resendCode-Link.is-disable {
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
    pointer-events: none;
}

#resendCode-Link:not(.is-disable) {
    display: block;
}

#resendCode-ToolTip.is-disable {
    display: block;
}

#resendCode-ToolTip:not(.is-disable) {
    display: none;
}

.login-description .content-title {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0px;
    text-align: center;
}

.login-description .content-description {
    color: rgb(49, 52, 53);
    margin-top: 10px;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 0px;
    text-align: center;
}

.login-description {
    margin: auto;
    display: block;
}

.logo-container {
    display: block;
    margin: auto;
}

#auth {
    display: block;
}

    #auth .logo-container img {
        min-width: 50%;
        margin: auto;
        display: block;
    }

    #auth .main-form {
        margin: auto;
    }

    #auth .main-content {
        margin: auto;
        max-width: 433px;
        display: block;
        margin-top: 31px;
    }

    #auth .anchor-button {
        margin: 32px auto;
    }

    #auth .lock-button {
        color: #007367;
        background: #bae7e5;
        height: 52px;
        width: 151px;
        border-radius: 30.5px;
    } 

    #auth .button {
        height: 50px;
        width: 80%;
        margin: auto;
        margin-top: 20px;
        display: block;
    }

    #auth .button-large {
        height: 50px;
        margin: auto;
        margin-top: 20px;
        display: block;
    }

    #auth .button-small {
        height: 50px;
        width: 130px;
        margin: auto;
        margin-top: 20px;
        display: block;
    }

#auth-footer {
    display: block;
    margin: auto;
}



    #auth-footer .content-description {
        font-size: 14px;
        font-weight: bold;
        color: rgb(0, 0, 0);
    }


.small-link {
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
    color: #034EA2;
}


#auth .breadcrumb a {
    color: rgb(57, 138, 126);
    font-size: 14px;
    font-weight: bold;
    height: 19px;
    letter-spacing: 0px;
    text-align: right;
    text-decoration: underline;
    width: 110px;
}


.breadcrumb .link-block {
    display: flex;
    align-items: center;
}

    .breadcrumb .link-block span {
        margin-left: 20px;
    }

.inline-action-link {
    color: #034EA2;
    font-weight: 600;
    height: 22px;
    letter-spacing: 0px;
    text-decoration: none;
}

.normal-action-link {
    display: block;
    color: #034EA2;
    font-size: 16px;
    font-weight: 600;
    height: 22px;
    letter-spacing: 0px;
    text-decoration: none;
    text-align: center;
}

#auth-footer {
    margin-top: 30px;
}

    #auth-footer p {
        margin-top: 50px;
        color: rgb(81, 81, 81);
        font-size: 13px;
        font-weight: normal;
        letter-spacing: 0px;
        text-align: center;
    }

    #auth-footer .tc-link {
        color: #034EA2;
    }

    #auth-footer .action-link {
        display: block;
        color: #034EA2;
        font-size: 16px;
        font-weight: 600;
        height: 22px;
        letter-spacing: 0px;
        text-align: center;
    }

    #auth-footer .tooltip {
        position: relative;
        display: block;
        color: #034EA2;
        font-size: 16px;
        font-weight: 600;
        height: 32px;
        letter-spacing: 0px;
        text-align: center;
    }

        #auth-footer .tooltip .tooltiptext {
            visibility: hidden;
            background-color: #555;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 20%;
            opacity: 0;
            transition: opacity 0.3s;
            width: 60%;
        }

            #auth-footer .tooltip .tooltiptext::after {
                content: "";
                position: absolute;
                top: 100%;
                left: 50%;
                margin-left: -5px;
                border-width: 5px;
                border-style: solid;
                border-color: #555 transparent transparent transparent;
            }

        #auth-footer .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        } 

#auth button {
    font-size: 16px;
    font-weight: bold;
    height: 24px;
    line-height: 24px;
    text-align: center;
    width: 64px;
}


.cb-form-control.in-error > .error-section {
    display: block;
}

.cb-form-control:not(.in-error) > .error-section {
    display: none;
}

.control-container .cb-form-control:first-child {
    background-color: #ffffff;
    border-style: solid;
    border-color: #E9E9F0;
    overflow: hidden;
    border-width: 0px 0px 1px 0px;
}

.control-container .cb-form-control:last-child {
    border-width: 1px 1px 1px 1px;
    border-radius: 0 0 8px 8px;
}

.control-container .cb-form-control:only-child {
    border-radius: 8px 8px 8px 8px;
    border-width: 1px 1px 1px 1px;
    border-style: none;
}

.cb-form-control .error-section {
    margin-top: 3px;
    width: 100%;
    left: -10px;
    bottom: -10px;
    padding: 10px;
    background-color: #F1D3D6;
    color: #EE2737;
    position: relative;
}

button#toggle-password {
    width: auto;
}

.error-message .in-error {
    display: block;
}

.error-message:not(.in-error) {
    display: none;
}

.toast-error, .toast-success, .toast-resendCode {
    position: fixed;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 12px;
    border-radius: 8px;
    color: white;
    background-color: #EE2737;
    padding: 10px 15px;
}

.toast-error {
    background-color: #EE2737;
}

.toast-success {
    background-color: #538335;
}

.toast-resendCode {
    background-color: #48a437;
}

.button-container {
    display: flex;
}

.consent-hint {
    color: rgb(95, 99, 101);
    font-size: 14px;
    font-weight: 600;
}

.consent-scope {
    font-size: 13px;
    font-weight: normal;
}

.scope-item {
    color: rgb(6, 161, 153);
    font-size: 13px;
}

.no-border {
    border-width: 0px;
}

.cancel-button {
    background-color: white;
    border: 1px solid rgb(200, 205, 208);
    border-radius: 30.5px;
}

.button-container .button {
    width: 130px;
}

    .button-container .button:first-child {
        margin-left: 10px;
    }

.language-selector-x {
    height: auto;
    position: absolute;
    top: 75px;
    right: 0px;
    display: flex;
    width: 50%;
}

    .language-selector-x div {
        color: white;
        margin: 0 auto;
        max-width: 1000px;
        height: 100%;
        text-align: right;
    }

    .language-selector-x ul {
        display: inline-block;
    }

    .language-selector-x li {
        display: inline-block;
    }

    .language-selector-x ul li:last-child {
        border: none;
    }

    .language-selector-x a {
        font-size: 16px;
        font-weight: bold;
        font-family: Open Sans Bold,sans-serif;
        color: #fff;
        text-decoration: none;
        padding: 5px;
    }

/*Desktop*/
@media (min-width: 769px) {
    #auth .breadcrumb {
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding: 0px 50px;
        max-width: 1300px;
        box-sizing: border-box;
    }
}

/*Tablet*/
@media (min-width: 580px) and (max-width: 768px) {
    .header > .header-content-container {
        padding-top: 35px;
        /* width: 100%; */
        max-width: 580px;
    }

    #auth .breadcrumb {
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding: 0px 26px;
        max-width: 580px;
        box-sizing: border-box;
    }
}

/*Mobile*/
@media (max-width: 579px) {
    #auth .breadcrumb {
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding: 0px 26px;
        max-width: 580px;
        box-sizing: border-box;
    }
}

.signup-checkbox-container {
    margin-top: 4px;
}

.signup-checkbox-container .error-section {
    margin-top: 0;
    margin-left: 5px;
    background-color: #fdbfd3;
    padding: 1px 10px 5px 9px;
}

.signup-checkbox-container.hideOptIn {
    display: none;
}

.cb-checkbox input[type=checkbox] {
    opacity: 0;
    height: 0;
    width: 0;
}

.cb-checkbox input[type=checkbox]:checked + .checkbox-container .checkbox:after {
    display: block;
}

.cb-checkbox input[type=checkbox]:checked + .checkbox-container .checkbox {
    border: 1px solid #DED9D9;
    background-color: #034EA2;
    margin-top: 3px;
}

.cb-checkbox input[type=checkbox]:checked + .checkbox-container .checkbox:after {
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
}

.cb-checkbox input[type=checkbox]:checked + .checkbox-container.disabled .checkbox {
    border: 1px solid #C8CDD0;
    background-color: #F2F2F3;
}

.cb-checkbox input[type=checkbox]:checked + .checkbox-container.disabled .checkbox:after {
    border: solid #C8CDD0;
    border-width: 0 2px 2px 0;
}

.cb-checkbox input[type=checkbox]:checked + .checkbox-container.disabled label {
    color: #C4C4D1;
}

.cb-checkbox input[type=checkbox]:focus + .checkbox-container {
    border-color: #a0a0ba;
}

.cb-checkbox .checkbox-container:hover .checkbox {
    border: 1px solid #C8CDD0;
    background-color: #C8CDD0;
}

.cb-checkbox .checkbox-container:hover .checkbox:after {
    border: solid #56A437;
}

.cb-checkbox .checkbox-container {
    display: flex;
    align-items: flex-start;
    padding: 3px 4px 2px 5px;
    border: 1px dashed rgba(160, 160, 186, 0);
    border-radius: 3px;
}

.cb-checkbox .checkbox-container .checkbox {
    flex-shrink: 0;
    margin-right: 8px;
    height: 18px;
    width: 18px;
    border: 1px solid #C8CDD0;
    border-radius: 3px;
    background-color: #FFFFFF;
    cursor: pointer;
    margin-top: 3px;
}

.cb-checkbox .checkbox-container label > a {
    text-decoration: none;
}

.cb-checkbox .checkbox-container label > a:hover {
    text-decoration: underline;
}

.cb-checkbox .checkbox-container .checkbox:after {
    content: "";
    position: relative;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #56A437;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cb-checkbox .checkbox-container label {
    flex: 1;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 14px;
    line-height: normal;
}

.cb-checkbox .checkbox-container.disabled .checkbox {
    border: 1px solid #C8CDD0;
    background-color: #F2F2F3;
}

.cb-checkbox .checkbox-container.disabled .checkbox:after {
    border: solid #C8CDD0;
    border-width: 0 2px 2px 0;
}

.cb-checkbox .checkbox-container.disabled label {
    color: #C4C4D1;
}

.privacy-checkbox {
    margin-top: 16px;
}

button#submitButton.disabled {
    background: #86b3e5;
}