@font-face {
    font-family: 'Work Sans';
    src:
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-WorkSans_4.woff2') format('woff2'),
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-WorkSans_4.woff') format('woff');
    font-weight: 400;
}
@font-face {
    font-family: 'Work Sans';
    src:
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-WorkSans_5.woff2') format('woff2'),
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-WorkSans_5.woff') format('woff');
    font-weight: 500;
}
@font-face {
    font-family: 'Work Sans';
    src:
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-WorkSans_5i.woff2') format('woff2'),
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-WorkSans_5i.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Work Sans';
    src:
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-WorkSans_7.woff2') format('woff2'),
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-WorkSans_7.woff') format('woff');
    font-weight: 700;
}
@font-face {
    font-family: 'Work Sans';
    src:
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-WorkSans_8.woff2') format('woff2'),
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-WorkSans_8.woff') format('woff');
    font-weight: 800;
}
@font-face {
    font-family: 'Graun';
    src:
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-Graun_6.woff2') format('woff2'),
            url('https://static.fox.nl/assets/staticassets/v3/fonts/FOX-Graun_6.woff') format('woff');
    font-weight: 500;
}

html {
    box-sizing: border-box;
    font-size: 0.9375rem;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    line-height: 1.6;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Verdana, Arial, sans-serif, ui-icons, illustrative-icons;
}

.companyLogo {
    content:url(https://static.fox.nl/assets/staticassets/v5/icon/logo/fox-icon-groen.svg);
    max-width: 95px;
}

/* main container */
.container {
    padding: 160px 10px 160px 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}


.inner-container {
    display: flex;
    flex-direction: column;
    width: 432px;
    position: relative;
}

/* surrounds the main title and subtitle */
.text-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    position: relative;
}

.title-container {
    height: 50px;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

.navigate-back {
	display: flex;
    flex-direction: row;
    align-items: flex-start;
	margin-bottom: 32px;
	color: #000;
}

.navigate-back:hover {
	cursor: pointer;
	color: #00508B;
}

.navigate-back-text {
	font-family: "Work Sans";
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
}

.navigate-back-icon {
	display: inline-block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    mask: url(https://static.fox.nl/assets/staticassets/v5/icon/ui/arrow-left.svg) no-repeat center center;
	margin-right: 5px;
}

.navigate-back-icon:hover {
	transform: translateX(-3px);
}

.main-title {
    color: #00508B;
    text-align: center;
    font-family: "Graun";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
    padding-top: 18px;
    margin-right: 10px;
}

.sub-title {
    padding-top: 24px;
    color:  #00508B;
    text-align: center;
    font-family: "Graun";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-transform: uppercase;
}

.sub-title-content {
    color: #000;
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin-bottom: 32px;
}

input  {
    /* reset all styling */
    all: initial;

    /*overwrite with new styling */
    border-radius: 6px;
    background: #f2f2f2;
    display: flex;
    padding: 16px;
    width: 100%;
    border: 2px solid #F2F2F2;
    max-width: -webkit-fill-available;

    /*layout */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;

    /*typography */
    overflow: hidden;
    color: #606060;
    text-overflow: ellipsis;
    font-family: "Work Sans", Arial, sans-serif, ui-icons, illustrative-icons;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

input::placeholder {
    /*typography */
    overflow: hidden;
    color: #606060;
    text-overflow: ellipsis;
    font-family: "Work Sans", Arial, sans-serif, ui-icons, illustrative-icons;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

input:focus  {
    border: 2px solid #007dc1;
}

input:disabled {
    background: #e5e5e5;
    border: 2px solid #e5e5e5;
}

input:disabled::placeholder {
    color: #a6a6a6;
}

label {
    color: #000307;
    font-family: "Work Sans", Arial, sans-serif, ui-icons, illustrative-icons;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 137.5% */
    text-align: left;
}

.entry-item {
    display: flex;
    flex-direction: column;
}

.entry-item > input {
    order: 1;
}

.entry-item > .error.itemLevel {
    order: 2;
}

.entry-item:nth-of-type(1) {
    margin-bottom: 20px;
}

.entry-item:nth-of-type(2) {
    margin-bottom: 32px;
}

#password, #email {
    margin-top: 8px;
}

.buttons #cancel {
    display: none;
}

button {
    all: initial;

    width: 100%;
    background-color: #003D86;
    border-radius: 6px;
    flex-direction: column;
    align-items: center;
    padding: 18px 16px 18px 16px;
    max-width: -webkit-fill-available;
    margin-bottom: 20px;

    /* text style */
    color: #FFF;
    font-family: "Work Sans", Arial, sans-serif, ui-icons, illustrative-icons;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

button:hover {
    cursor: pointer;
    background-color: #023660;
}

button:active {
    cursor: pointer;
    background-color: #007dc1;
}

#next {
    margin-bottom: 0;
}

button[aria-disabled="true"]{
    background-color: #cccccc;
    color: #a6a6a6;
}

.divider {
    display: none;
}

.heading, .intro {
    display: none;
}

#forgotPassword, #createAccount  {
    color:  #606060;
    font-family: "Work Sans", Arial, sans-serif, ui-icons, illustrative-icons;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.create {
    margin-top: 12px;
    text-align: center;
}

.error {
    color: #bb0606;
    font-family: "Work Sans", Arial, sans-serif, ui-icons, illustrative-icons;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    line-height: 18px;
    margin-top: 8px;
    margin-bottom: 0;
    > p {
        margin: 0;
    }
}

.helpLink {
    display: none;
}

ul {
    width: 100%;
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

.verificationSuccessText:not(:empty) {
    margin-bottom: 16px;
    height: auto;
    width: auto;
    border-radius: 6px;
    background: #e8f4ec;
}

.verificationSuccessText:not(:empty) > div:not(:empty) {
    font-family: "Work Sans", Arial, sans-serif, ui-icons, illustrative-icons;
    font-weight: 500;
    font-style: normal;
    font-size: 0.933333rem;
    line-height: 1.466667rem;
    text-decoration-line: none;
    color: #606060;
    display: block !important;
    margin: 16px;
    padding: 16px;
}

#emailVerificationControl_success_message::before {
    content: "\2713";
    display: block;
    font-size: 1.2em;
    margin-right: 5px;
    margin-bottom: 10px;
    color: #4CAF50;
    background-color: currentcolor;
    mask-image: url("https://static.fox.nl/assets/staticassets/v5/icon/ui/success.svg");
    -webkit-mask-position-x: right;
    -webkit-mask-position-y: center;
    mask-repeat: no-repeat;
    min-height: 1.466667rem;
    width: 1.466667rem;
}

#emailVerificationControl_but_send_new_code {
    background-color: #f2f2f2;
    color: #000000;
}

#emailVerificationControl_but_send_new_code:hover {
    background-color: #e5e5e5;
    cursor: pointer;
}

#emailVerificationControl_but_send_new_code:active {
    background-color: #d9d9d9;
    cursor: pointer;
}

.attrEntry {
    margin-bottom: 20px;
}

.attrEntry:has(> #newPassword:disabled, #reenterPassword:disabled) {
    display: none;
}

.attrEntry {
    display: flex;
    flex-direction: column;
}

.attrEntry > input {
    order: 1;
}

.attrEntry> .error.itemLevel {
    order: 2;
}

