
    @font -face {
        font-family: "Lato";
        font-style: normal;
        font-weight: 400;
        src: local("Lato Regular"), local("Lato-Regular"), url("../woff2/latolatin-regular.woff2") format("woff2");
    }
    @font -face {
        font-family: "Lato";
        font-style: italic;
        font-weight: 400;
        src: local("Lato Italic"), local("Lato-Italic"), url("../woff2/latolatin-italic.woff2") format("woff2");
    }
    @font -face {
        font-family: "Lato";
        font-style: normal;
        font-weight: 700;
        src: local("Lato Bold"), local("Lato-Bold"), url("../woff2/latolatin-bold.woff2") format("woff2");
    }

    html,
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        font-family: "Lato", Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 1.2;
        color: #1C2936;
        background-color: #F5F5F5;
        overflow-x: hidden;
    }

    header {
        display: none;
    }

    * {
        font-family: "Lato", Arial, Helvetica, sans-serif;
        box-sizing: border-box;
        font-size: 14px;
        line-height: 1.2;
    }

    body::before {
        content: "";
        width: 100%;
        height: 100%;
        background-size: cover;
        position: fixed;
        top: 0;
        left: 0;
        animation: bg 0.3s forwards;
    }

    .container {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        opacity: 0;
        animation: main-content 0.5s forwards;
        animation-delay: 0.3s;
        position: relative;
        flex: 1;
        flex-direction: column;
    }

        .container .page-wrapper,
        .container .page-consent,
        .container .error-page {
            width: 90%;
            max-width: 400px;
            background-color: white;
            padding: 32px;
            border-radius: 4px;
            margin-top: auto;
            margin-bottom: auto;
            border: 1px solid #E4EDFF;
        }

            .container .error-page .page-header h1 {
                color: #002060;
                font-size: 1.5rem;
            }

    .page-wrapper {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

        .page-wrapper .logo,
        .page-consent .logo,
        .error-page .logo {
            display: block;
            max-width: 100%;
            margin-top: -15px;
            margin-bottom: 20px;
            animation: zoom 0.3s forwards;
            animation-delay: 0.6s;
            opacity: 0.7;
            max-height: 60px;
        }

        .page-wrapper .external-header,
        .page-wrapper h2.header {
            display: block;
            max-width: 100%;
            text-align: center;
            font-size: 1.5rem;
            color: #002060;
            margin-bottom: 16px;
            margin-top: 0;
        }

        .page-wrapper form {
            display: flex;
            justify-content: center;
            flex-direction: column;
        }

            .page-wrapper form button,
            .page-consent form button {
                background-color: #0022FF;
                color: #FFFFFF;
                border: none;
                margin: 8px auto;
                display: block;
                width: 100%;
                font-size: 1.2rem;
                border-radius: 4px;
                padding: 8px 16px;
                text-decoration: none;
                cursor: pointer;
                font-weight: 600;
                transition: all 0.2s ease-in-out;
            }

                .page-wrapper form button:hover {
                    background-color: #0022FF;
                    color: #FFFFFF;
                }

        .page-wrapper .warning-msg {
            background-color: #fbe8e7;
            border-color: #baccd6;
            color: #b01515;
            padding: 16px;
        }

            .page-wrapper .warning-msg a {
                color: #b01515;
                font-weight: 600;
            }

        .page-wrapper form .form-group {
            width: 100%;
            position: relative;
            margin-bottom: 15px;
        }

            .page-wrapper form .form-group input {
                padding: 11px 4px 0 10px;
                display: block;
                width: 100%;
                border: solid 1px #E4EDFF;
                border-radius: 2px;
                height: 50px;
            }

                .page-wrapper form .form-group input:focus {
                    outline: none;
                }

            .page-wrapper form .form-group label {
                color: #1C2936;
                font-weight: normal;
                position: absolute;
                pointer-events: none;
                left: 10px;
                top: 18px;
                transition: 0.2s ease all;
                -moz-transition: 0.2s ease all;
                -webkit-transition: 0.2s ease all;
            }

                .page-wrapper form .form-group label.dropdown-label {
                    position: unset;
                    top: unset;
                    left: unset;
                    font-size: 0.8rem;
                }

            .page-wrapper form .form-group select {
                padding: 0 4px 0 10px;
                display: block;
                width: 100%;
                border: solid 1px #E4EDFF;
                border-radius: 2px;
                height: 50px;
            }

            .page-wrapper form .form-group input:focus ~ label,
            .page-wrapper form .form-group input:not(.empty) ~ label {
                top: 4px;
                left: 10px;
                font-size: 11px;
                color: #1C2936;
            }

            .page-wrapper form .form-group input:-webkit-autofill ~ label {
                top: 4px;
                left: 10px;
                font-size: 11px;
                color: #1C2936;
            }

            .page-wrapper form .form-group.action-buttons {
                margin-bottom: 0;
            }

        .page-wrapper .external-body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

            .page-wrapper .external-body .external-button {
                transition: all ease-in-out 0.15s;
                width: 100%;
                margin-bottom: 8px;
            }

                .page-wrapper .external-body .external-button a {
                    color: white;
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                    width: 100%;
                    background-color: #002060;
                    transition: all 0.2s ease-in-out;
                    border-radius: 4px;
                }

                    .page-wrapper .external-body .external-button a:hover {
                        background-color: #002060;
                    }

                    .page-wrapper .external-body .external-button a .ex-title {
                        color: white;
                        text-decoration: none;
                        display: block;
                        height: 100%;
                        padding-left: 4px;
                        line-height: 14px;
                    }

                    .page-wrapper .external-body .external-button a .fab,
                    .page-wrapper .external-body .external-button a .icon {
                        color: white;
                        background: #002060;
                        display: block;
                        width: 45px;
                        text-align: center;
                        height: 100%;
                        margin-right: 4px;
                        padding: 4px 0;
                        transition: all 0.2s ease-in-out;
                        font-size: 12pt;
                        border-radius: 4px;
                    }

                    .page-wrapper .external-body .external-button a:hover .fab,
                    .page-wrapper .external-body .external-button a:hover .icon {
                        background: #0022FF;
                    }

                .page-wrapper .external-body .external-button.ex-google a .fab:before {
                    content: "\f1a0";
                }

                .page-wrapper .external-body .external-button.ex-apple a .fab:before {
                    content: "\f179";
                }

                .page-wrapper .external-body .external-button.ex-facebook a .fab:before {
                    content: "\f39e";
                }

                .page-wrapper .external-body .external-button.ex-amazon a .fab:before {
                    content: "\f270";
                }

    #section-divide {
        background-color: #E4EDFF;
        height: 1px;
        margin: 8px auto;
        text-align: center;
        width: 100%;
    }

    #local-login #login-password {
        margin-bottom: 16px;
    }

    #local-login #login-remember {
        margin-bottom: 8px;
    }

    #local-login {
        margin-top: 16px;
    }

    #opt-ins {
        margin-bottom: 24px;
    }

    #magic-message {
        margin-bottom: 32px;
        display: block;
    }

    #two-fa-message {
        margin-bottom: 32px;
        display: block;
    }

    .account-option {
        border: solid 1px #E4EDFF;
        padding: 16px;
        margin-bottom: 8px;
        text-align: center;
    }

    .account-option-title {
        display: inline-block;
        font-size: 1.5rem;
    }

    #account-choice-message {
        margin-bottom: 32px;
        display: block;
    }

    #opt-in-message {
        margin-bottom: 16px;
        display: block;
    }

    #opt-in-sub-message {
        margin-top: 16px;
        font-size: 80%;
        display: block;
    }

    .login-content .links {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
    }

        .login-content .links a {
            text-decoration: none;
            display: block;
            margin: 0 8px;
            color: #0022FF;
        }

    .checkbox {
        z-index: 0;
        position: relative;
        display: inline-block;
        color: #464646;
    }
        /* Input */
        .checkbox > input {
            appearance: none;
            -moz-appearance: none;
            -webkit-appearance: none;
            z-index: -1;
            position: absolute;
            left: -10px;
            top: -8px;
            display: block;
            margin: 0;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            background-color: #002060;
            box-shadow: none;
            outline: none;
            opacity: 0;
            transform: scale(1);
            pointer-events: none;
            transition: opacity 0.3s, transform 0.2s;
        }
        /* Span */
        .checkbox > span {
            display: inline-block;
            width: 100%;
            cursor: pointer;
            line-height: 1.9;
        }
            /* Box */
            .checkbox > span::before {
                content: "";
                display: inline-block;
                box-sizing: border-box;
                margin: 3px 11px 3px 1px;
                border: solid 2px; /* Safari */
                border-color: #002060;
                border-radius: 2px;
                width: 18px;
                height: 18px;
                vertical-align: top;
                transition: border-color 0.2s, background-color 0.2s;
            }
            /* Checkmark */
            .checkbox > span::after {
                content: "";
                display: block;
                position: absolute;
                top: 3px;
                left: 1px;
                width: 10px;
                height: 5px;
                border: solid 2px transparent;
                border-right: none;
                border-top: none;
                transform: translate(3px, 4px) rotate(-45deg);
            }
        /* Checked, Indeterminate */
        .checkbox > input:checked,
        .checkbox > input:indeterminate {
            background-color: #002060;
        }

            .checkbox > input:checked + span::before,
            .checkbox > input:indeterminate + span::before {
                border-color: #002060;
                background-color: #002060;
            }

            .checkbox > input:checked + span::after,
            .checkbox > input:indeterminate + span::after {
                border-color: white;
            }

            .checkbox > input:indeterminate + span::after {
                border-left: none;
                transform: translate(4px, 3px);
            }
        /* Hover, Focus */
        .checkbox:hover > input {
            opacity: 0.04;
        }

        .checkbox > input:focus {
            opacity: 0.12;
        }

        .checkbox:hover > input:focus {
            opacity: 0.16;
        }
        /* Active */
        .checkbox > input:active {
            opacity: 1;
            transform: scale(0);
            transition: transform 0s, opacity 0s;
        }

            .checkbox > input:active + span::before {
                border-color: #002060;
            }

        .checkbox > input:checked:active + span::before {
            border-color: transparent;
            background-color: #002060;
        }

    .material-toggle {
        position: relative;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        display: block;
    }

        .material-toggle input:empty {
            margin-left: -9999px;
        }

            .material-toggle input:empty ~ label {
                position: absolute;
                top: 0;
                left: 0;
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                padding: 2px 0 0 45px;
            }

                .material-toggle input:empty ~ label:before,
                .material-toggle input:empty ~ label:after {
                    position: absolute;
                    display: block;
                    content: " ";
                    -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
                    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
                }

                .material-toggle input:empty ~ label:before {
                    top: 3px;
                    left: 0px;
                    width: 32px;
                    height: 13px;
                    border-radius: 12px;
                    background-color: #bdbdbd;
                }

    input.switch:empty ~ label:after {
        top: -1px;
        left: -9px;
        width: 1.4em;
        height: 8px;
        bottom: 0.1em;
        margin-left: 0.1em;
        background-color: #fff;
        border-radius: 50%;
        width: 17px;
        height: 17px;
        border-radius: 50%;
        border: solid 2px;
        border-color: #fff;
        box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
    }

    .material-toggle input:checked ~ label:before {
        background-color: #002060;
    }

    .material-toggle input:checked ~ label:after {
        left: 15px;
        background-color: #002060;
        border-color: #002060
    }

    .forgotten-password-message {
        margin-bottom: 16px;
    }

    .application-scopes {
        padding: 0;
    }

        .application-scopes .consent-item {
            list-style-type: none;
            border: solid 1px #E4EDFF;
            padding: 16px;
            margin-bottom: 8px;
        }

            .application-scopes .consent-item label {
                position: relative;
            }

            .application-scopes .consent-item .name {
                margin-top: 0;
            }

            .application-scopes .consent-item .consent-description {
                font-size: 0.9rem;
            }

        .application-scopes .fas {
            display: none;
        }

    #login-remember {
        margin-bottom: 25px;
    }

    .footer {
        text-align: center;
    }

        .footer .option {
            font-size: 0.7rem;
            display: block;
            margin-bottom: 5px;
        }

            .footer .option a {
                color: #0022FF;
                text-decoration: underline;
            }

                .footer .option a:hover {
                    text-decoration: underline;
                }

    footer {
        position: fixed;
        bottom: 0;
        z-index: 3;
        background-color: #002060;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 8px;
        opacity: 0;
        animation: main-content 0.3s forwards;
    }

        footer span {
            font-size: 0.8rem;
            color: white;
            margin: 0 8px;
        }

    .page-wrapper form .form-group input:-internal-autofill-selected {
        -webkit-box-shadow: 0 0 0 100px white inset;
        background-color: #b01515;
        outline: unset;
    }

    .page-wrapper form .form-group input {
        filter: none;
    }

    #button-cancel,
    .page-consent form button.btn-secondary {
        background-color: white;
        border: solid 1px #0022FF;
        color: #0022FF;
    }

    .field-validation-error {
        display: block;
        margin-top: 8px;
        color: #b01515;
    }

    .validation-summary.validation-summary-errors {
        background-color: #F1F6FE;
        border-color: #E4EDFF;
        color: #b01515;
        animation: zoom 0.3s forwards;
        animation-delay: 0.6s;
        transform: scale(0.9);
        opacity: 0.7;
        padding-right: 10px;
    }

    #login-buttons {
        margin-bottom: 0;
    }
    @keyframes inputHighlighter {
        from {
            background: #002060;
        }

        to {
            width: 0;
            background: transparent;
        }
    }
    @keyframes bg {
        from {
            filter: blur(0px);
        }

        to {
            filter: blur(8px);
        }
    }
    @keyframes zoom {
        from {
            transform: scale(0.9);
            opacity: 0.7;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }
    @keyframes main-content {
        0% {
            opacity: 0;
            transform: scale(0.9);
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
    @keyframes main-content-shadow {
        from {
            box-shadow: none;
        }

        to {
            box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.75);
        }
    }
    @media only screen and (max-width: 1024px) {
        .container .page-wrapper,
        .container .page-consent,
        .container .error-page {
            max-width: 450px;
        }
    }
    @media only screen and (max-width: 600px) {
        .container .page-wrapper,
        .container .page-consent {
            padding: 40px;
            width: 100%;
            max-width: 100%;
            border-radius: 0;
            box-shadow: none;
            animation: none;
        }

        .container {
            height: unset;
            animation: none;
            opacity: 1;
            position: initial;
        }

        .page-wrapper .logo,
        .page-consent .logo,
        .error-page .logo {
            max-height: 50px;
            animation: none;
            opacity: 1;
        }

        .page-wrapper .external-header {
            font-size: 1.1rem;
        }

        #section-divide {
            margin: 10px auto 25px;
        }

        footer {
            display: none;
        }

        body::before {
            display: none;
        }

        .page-wrapper .external-body .external-button a .fab,
        .page-wrapper .external-body .external-button a .icon {
            font-size: 16pt;
        }
    }
