    
        @font-face {
            font-family: 'Lato';
            font-style: normal;
            font-weight: 400;
            src: local('Lato Regular'), local('Lato-Regular'), url('/auth/fonts/latolatin-regular.woff2') format('woff2')
        }

        @font-face {
            font-family: 'Lato';
            font-style: italic;
            font-weight: 400;
            src: local('Lato Italic'), local('Lato-Italic'), url('/auth/fonts/latolatin-italic.woff2') format('woff2')
        }

        @font-face {
            font-family: 'Lato';
            font-style: normal;
            font-weight: 700;
            src: local('Lato Bold'), local('Lato-Bold'), url('/auth/fonts/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: #464646;
            background-color: #fff;
            overflow-x:hidden;
        }

        header {
            display: none;
        }

        * {
            font-family: 'Lato', Arial, Helvetica, sans-serif;
            box-sizing: border-box;
            font-size: 14px;
            line-height: 1.2;
        }

        @media only screen and (min-width: 600px) {
            body::before {
                background-image: url('https://cdn.parcel2go.com/42c5534b-0f47-4342-80f0-8f21203f0669/homepage/redesign/home_image_hero_optimized.jpg');
            }
        }

        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: 50px;
            animation: main-content-shadow 0.3s forwards;
            animation-delay: 0.8s;
            border-radius: 10px;
            margin-top:auto;
            margin-bottom:auto;
        }

        .container .error-page .page-header h1 {
            color: #0c63a6;
            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: -25px;
            margin-bottom: 20px;
            animation: zoom 0.3s forwards;
            animation-delay: 0.6s;
            transform: scale(0.9);
            opacity: 0.7;
            max-height: 30px;
        }

        .page-wrapper .external-header,
        .page-wrapper h2.header {
            display: block;
            max-width: 100%;
            text-align: center;
            font-size: 1.5rem;
            color: #0c63a6;
            margin-bottom: 15px;
            margin-top: 0;
        }

        .page-wrapper form {
            display: flex;
            justify-content: center;
            flex-direction: column;
        }

        .page-wrapper form button,
        .page-consent form button {
            background-color: #FFA400;
            color: #0c63a6;
            border: none;
            margin: 10px auto;
            display: block;
            width: 100%;
            font-size: 1.2rem;
            border-radius: 25px;
            padding: 10px 16px;
            text-decoration: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s ease-in-out;
        }

        .page-wrapper form button:hover {
            background-color: #E68B00;
            color: #004A8D;
        }

        .page-wrapper .warning-msg{
            background-color: #fbe8e7;
            border-color: #baccd6;
            color: #d14325;
            padding:15px;
        }

        .page-wrapper .warning-msg a {
            color: #d14325;
            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 #baccd6;
            border-radius: 4px;
            height: 50px;
        }

        .page-wrapper form .form-group input:focus {
            outline: none;
        }

        .page-wrapper form .form-group label {
            color: #464646;
            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 input:focus~label,
        .page-wrapper form .form-group input:valid~label,
        .page-wrapper form .form-group input:not(.empty)~label {
            top: 4px;
            left: 10px;
            font-size: 11px;
            color: #999;
        }

        .page-wrapper form .form-group input:-webkit-autofill~label {
            top: 4px;
            left: 10px;
            font-size: 11px;
            color: #999;
        }

        .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: 5px;
        }

        .page-wrapper .external-body .external-button a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            width: 100%;
            background-color: #0c63a6;
            transition: all 0.2s ease-in-out;
        }

        .page-wrapper .external-body .external-button a:hover {
            background-color: #004A8D;
        }

        .page-wrapper .external-body .external-button a .ex-title {
            color: white;
            text-decoration: none;
            display: block;
            height: 100%;
            padding-left: 10px;
        }

        .page-wrapper .external-body .external-button a .fab,
        .page-wrapper .external-body .external-button a .icon {
            color: white;
            background: #15537d;
            display: block;
            width: 50px;
            text-align: center;
            height: 100%;
            border-right: solid 1px white;
            margin-right: 5px;
            padding: 5px 0;
            transition: all 0.2s ease-in-out;
            font-size: 12pt;
        }

        .page-wrapper .external-body .external-button a:hover .fab,
        .page-wrapper .external-body .external-button a:hover .icon {
            background: #003A64;
        }

        .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: #e3e3e3;
            height: 1px;
            margin: 10px auto;
            text-align: center;
            width: 100%;
        }

        #local-login #login-password {
            margin-bottom:10px;
        }

        #local-login #login-remember {
            margin-bottom:5px;
        }

        #local-login {
            margin-top:15px
        }

		#opt-ins {
			margin-bottom: 30px;
		}

        #magic-message {
			margin-bottom: 35px;
			display: block;
		}

        #two-fa-message {
			margin-bottom: 35px;
			display: block;
		}

        .account-option {
            border: solid 1px #e3e3e3;
            padding: 15px;
            margin-bottom: 10px;
            text-align: center;
        }

        .account-option-title {
           display:inline-block;
           font-size:1.5rem;
        }

        #account-choice-message {
			margin-bottom: 35px;
			display: block;
		}

		#opt-in-message {
			margin-bottom: 15px;
			display: block;
		}

		#opt-in-sub-message {
			margin-top: 15px;
			font-size: 80%;
			display: block;
		}

        .login-content .links {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px
        }

        .login-content .links a {
            text-decoration: none;
            display: block;
            margin: 0 10px;
            color: #0c63a6;
        }

        .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: #0c63a6;
            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: #0c63a6;
            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: #0c63a6;
        }

        .checkbox>input:checked+span::before,
        .checkbox>input:indeterminate+span::before {
            border-color: #15537d;
            background-color: #0c63a6;
        }

        .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: #15537d;
        }

        .checkbox>input:checked:active+span::before {
            border-color: transparent;
            background-color: #0c63a6;
        }

        .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(.4, 0, .2, 1);
            transition: all 250ms cubic-bezier(.4, 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, .14), 0 3px 3px -2px rgba(0, 0, 0, .2), 0 1px 8px 0 rgba(0, 0, 0, .12);
        }

        .material-toggle input:checked~label:before {
            background-color: #0c63a6;
        }

        .material-toggle input:checked~label:after {
            left: 15px;
            background-color: #0c63a6;
            border-color: #15537d;
        }

        .forgotten-password-message {
            margin-bottom : 40px
        }

        .application-scopes {
            padding: 0;
        }

        .application-scopes .consent-item {
            list-style-type: none;
            border: solid 1px #e3e3e3;
            padding: 15px;
            margin-bottom: 10px;
        }

        .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: #464646;
            text-decoration: none;
        }

        .footer .option a:hover {
            text-decoration: underline;
        }

        footer {
            position: fixed;
            bottom: 0;
            z-index: 3;
            background-color: #15537d;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 5px;
            opacity: 0;
            animation: main-content 0.3s forwards;
        }


        footer span {
            font-size: 0.8rem;
            color: white;
            margin: 0 10px;
        }

        .page-wrapper form .form-group input:-internal-autofill-selected {
            -webkit-box-shadow: 0 0 0 100px white inset;
            background-color: red;
            outline: unset;
        }

        .page-wrapper form .form-group input {
            filter:none;
        }

        #button-cancel,
        .page-consent form button.btn-secondary {
            background-color: white;
            border: solid 1px #0c63a6;
            color: #0c63a6;
        }

        .field-validation-error {
            display:block;
            margin-top:5px;
            color: #d14325;
        }

        .validation-summary.validation-summary-errors {
            background-color: #fbe8e7;
            border-color: #baccd6;
            color: #d14325;
            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: #0c63a6;
            }

            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 {
                margin: 0 auto 15px;
                max-height: 30px;
                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;
            }
        }
    