@font-face {
    font-family: DT-light;
    src: url(https://dt-businessid-qa.azureedge.net/assets/fonts/daimler-cs-light.woff) format("woff")
}

@font-face {
    font-family: DT-bold;
    src: url(https://dt-businessid-qa.azureedge.net/assets/fonts/daimler-cs-bold.woff) format("woff")
}

@font-face {
    font-family: DT-demi;
    src: url(https://dt-businessid-qa.azureedge.net/assets/fonts/daimler-cs-demi.woff) format("woff")
}

.header {
    background-color: #fff;
    border-bottom: 1px solid black;
    text-align: center;
    padding: 42px 0;
    font-size: 40px;
    font-family: DT-demi, Arial, sans-serif;
    letter-spacing: .2em;
    line-height: 40px
}

.header__subtitle {
    font-family: DT-light, Arial, sans-serif;
    font-size: 30px
}

@media (max-width: 580px) {
    .header {
        font-size: 30px;
        line-height: 30px;
        border: none;
        padding-bottom: 0
    }

    .header__subtitle {
        font-size: 25px
    }
}

.footer {
    background-color: #f0f1f2;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    color: #444;
    padding: 30px;
    border-top: 1px solid black;
    transition: ease all .5s
}

.brands {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.brand {
    margin: 0 20px;
    flex: 1;
    align-self: center
}

.brand img {
    max-width: 100%;
    min-width: 50px;
    max-height: 70px;
    object-fit: contain
}

@media (max-height: 800px) {
    .footer {
        padding: 20px 0
    }
}

button {
    background-color: #000;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 0;
    color: #fff;
    font-family: DT-demi, Arial, sans-serif;
    cursor: pointer;
    transition: ease all .5s
}

button:hover {
    background-color: #3f3f3f
}

button:disabled {
    background-color: #767676cd;
    cursor: not-allowed
}

button a {
    width: 100%;
    height: 100%;
    display: inline-block;
    line-height: 40px
}

.buttons>button:not(:last-of-type) {
    margin-bottom: 10px
}

input[type=text],
input[type=password] {
    order: 0;
    height: 40px;
    padding: 0 10px;
    transition: ease all .5s
}

@media (max-height: 800px) {
    input {
        height: 30px
    }
}

select {
    height: 40px;
    padding: 0 10px;
    transition: ease all .5s
}

@media (max-height: 800px) {
    select {
        height: 30px
    }
}

.password-strength-display {
    margin-top: 10px
}

.password-rules {
    margin-bottom: 10px;
    display: flex
}

.password-rules-section {
    flex: 1
}

.password-rule-fulfilled {
    color: #cfcfcf;
    text-decoration: line-through
}

meter {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 1.5em;
    background: #EEE;
    box-shadow: 0 2px 3px #0003 inset;
    border-radius: 3px
}

meter::-webkit-meter-bar {
    background-color: #0000001a;
    transition: width .4s linear
}

meter::-moz-meter-bar {
    background-color: #0000001a;
    transition: width .4s linear
}

meter>div {
    width: 100%;
    height: 1.5em;
    transition: width .4s linear;
    background: #EEE;
    box-shadow: 0 2px 3px #0003 inset;
    border-radius: 3px
}

meter::-webkit-meter-suboptimum-value,
meter::-webkit-meter-suboptimum-value,
meter::-webkit-meter-optimum-value {
    box-shadow: 0 2px 3px #0003 inset
}

meter[value="0"]>div {
    width: 0%
}

meter[value="1"]>div {
    width: 25%;
    background-color: red
}

meter[value="2"]>div {
    width: 50%;
    background-color: #ff0
}

meter[value="3"]>div {
    width: 75%;
    background-color: #ff0
}

meter[value="4"]>div {
    width: 100%;
    background-color: green
}

meter::-webkit-meter-bar {
    background: #EEE;
    box-shadow: 0 2px 3px #0003 inset;
    border-radius: 3px;
    transition: width .4s linear
}

meter::-webkit-meter-optimum-value,
meter::-webkit-meter-suboptimum-value,
meter::-webkit-meter-even-less-good-value {
    box-shadow: 0 2px 3px #0003 inset;
    border-radius: 3px
}

meter::-webkit-meter-optimum-value {
    background: #86CC00
}

meter::-webkit-meter-suboptimum-value {
    background: #FFDB1A
}

meter::-webkit-meter-even-less-good-value {
    background: #CC4600
}

meter::-moz-meter-bar {
    background: #EEE;
    box-shadow: 0 2px 3px #0003 inset;
    border-radius: 3px
}

meter:-moz-meter-optimum::-moz-meter-bar {
    background: #86CC00
}

meter:-moz-meter-sub-optimum::-moz-meter-bar {
    background: #FFDB1A
}

meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
    background: #CC4600
}

.password-strength-container {
    margin-top: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between
}

.password-strength-label {
    margin-left: 10px;
    width: 35%;
    text-align: center;
    border: 1px solid black;
    line-height: 1.5em;
    border-radius: 3px;
    font-size: 14px
}

.pw-toggle {
    float: right;
    display: flex
}

.pw-toggle label {
    justify-self: start;
    align-self: flex-start;
    font-family: DT-light, Arial, sans-serif;
    margin-right: 5px;
    margin-bottom: 0
}

.pw-toggle input {
    justify-self: center;
    align-self: center;
    height: unset;
    margin: 0
}

.working,
.verifying-modal {
    display: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #f0f0f0f2
}

.loader,
#verifying_blurb {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    border: 10px solid #bebebe;
    border-top: 10px solid #000000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    font-size: 0
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.modal {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    position: fixed;
    background-color: #fffffffa;
    padding-top: 2%;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s, visibility 0s .3s
}

.modal__content {
    width: 95vw;
    height: 90vh;
    max-width: 700px;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin: 0 auto;
    display: flex;
    flex-direction: column
}

.modal__content header {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px
}

.modal__content header h2 {
    margin: 0;
    text-align: center;
    padding: 0 20px
}

.modal__content header .modal-close {
    align-self: flex-start;
    font-size: 30px;
    font-family: DT-bold, Arial, sans-serif;
    cursor: pointer;
    color: gray
}

.modal__content header .modal-close:hover {
    color: #000
}

.modal__content .modal-main {
    flex: 1;
    text-align: left;
    overflow: auto;
    padding: 20px
}

.modal__content .modal-main ol:last-child {
    padding-left: 20px;
    padding-right: 10px
}

.modal__content .modal-main ol>li {
    padding: 5px 0
}

.modal__content footer {
    height: auto;
    text-align: right;
    border-top: solid 1px #cccccc;
    padding: var(--gutter)
}

.modal__content footer button,
.modal__content footer input {
    margin: 0
}

.modal__content footer button:not(:last-child),
.modal__content footer input:not(:last-child) {
    margin-right: var(--gutter)
}

.modal.active {
    visibility: visible !important;
    transition: opacity .3s;
    opacity: 1
}

.invisible-text {
    color: transparent !important
}

.error-hide-override {
    display: none
}

html {
    overflow: auto;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: linear-gradient(rgba(1, 1, 1, .5), rgba(0, 0, 0, .5)), url(https://dt-businessid-qa.azureedge.net/assets/bg.d4de30e4.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: gray;
    font-family: DT-light, Arial, sans-serif
}

body {
    margin: 0;
    padding: 0
}

.content {
    max-width: 450px;
    border-radius: 10px
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

label {
    font-size: 14px;
    font-family: DT-demi, Arial, sans-serif;
    margin-bottom: 3px
}

button>a {
    color: #fff;
    text-decoration: none
}

h1,
h4 {
    text-align: center;
    font-family: DT-demi, Arial, sans-serif
}

h1 {
    font-size: 28px
}

h2 {
    font-family: DT-demi, Arial, sans-serif;
    margin-top: 0;
    margin-bottom: .5rem;
    text-align: center;
}

hr {
    border-top: 0px solid black;
    border-bottom: 1px solid black;
    margin-block: 1rem
}

h4 {
    margin-bottom: 10px;
    margin-top: 10px
}

.fill {
    flex: 1 1 auto
}

.content-wrapper {
    flex: 1;
    max-width: 665px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.content {
    padding: 30px;
    padding-left: 70px;
    padding-right: 70px;
    position: relative;
    background-color: #fff
}

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

.divider,
.create,
.intro {
    display: none;
    text-align: center
}

.intro-text {
    text-align: left
}

.verificationInfoText,
.verificationSuccessText {
    display: none !important
}

#bottom-menu {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    border-top: 1px solid black;
    margin-top: 10px
}

#bottom-menu button:last-of-type {
    margin-top: 10px
}

.attrEntry:last-of-type:not(:last-child),
.entry-item:not(:last-of-type) {
    margin-bottom: 10px
}

.highlightError::placeholder,
.highlightError:-ms-input-placeholder,
.highlightError::-ms-input-placeholder,
.attrEntry>.error.show+input::placeholder,
.attrEntry>.error.show+input:-ms-input-placeholder,
.attrEntry>.error.show+input::-ms-input-placeholder {
    color: #9f3a38
}

.highlightError+label,
.attrEntry>.error.show+label {
    color: #9f3a38
}

.highlightError,
.attrEntry>.error.show+input,
.attrEntry>.error.show+select {
    border: 1px solid #9f3a38
}

.highlightError:focus-visible,
.attrEntry>.error.show+input:focus-visible {
    outline-color: #9f3a38
}

.error {
    color: #9f3a38;
    font-family: DT-bold, Arial, sans-serif;
    margin-top: 5px
}

.error>p {
    margin: 0
}

.error.itemLevel {
    font-size: 12px;
    order: 1
}

.error.pageLevel {
    border: 1px solid #9f3a38;
    background-color: #fff6f6;
    padding: 15px 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px
}

.heading {
    display: none
}

@media (max-width: 200px) {
    html {
        overflow: unset;
        height: unset
    }

    body {
        width: unset;
        height: unset;
        background: unset;
        background-color: #fff
    }

    .container {
        min-width: 320px;
        display: flex;
        flex-direction: column;
        height: unset
    }

    .footer {
        background-color: #fff
    }

    .content-wrapper {
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
        min-width: unset;
        padding: 20px;
        margin: 0;
        justify-content: start
    }

    .content {
        padding: 0
    }

    .brands {
        display: none
    }

    h2 {
        font-size: 20px
    }
}

#profile-edit h3,
#login-nosignup h3,
#terms-of-use h3,
#error-page h3 {
    text-align: center
}

#profile-edit ul,
#login-nosignup ul,
#terms-of-use ul,
#error-page ul {
    margin: 0;
    padding: 0
}

#profile-edit li,
#login-nosignup li,
#terms-of-use li,
#error-page li {
    list-style-type: none
}

#profile-edit .helpLink,
#login-nosignup .helpLink,
#terms-of-use .helpLink,
#error-page .helpLink {
    display: none
}

#profile-edit .attrEntry,
#login-nosignup .attrEntry,
#terms-of-use .attrEntry,
#error-page .attrEntry {
    display: flex;
    flex-direction: column
}

#profile-edit .sendButton,
#profile-edit .verifyButton,
#profile-edit .editButton,
#login-nosignup .sendButton,
#login-nosignup .verifyButton,
#login-nosignup .editButton,
#terms-of-use .sendButton,
#terms-of-use .verifyButton,
#terms-of-use .editButton,
#error-page .sendButton,
#error-page .verifyButton,
#error-page .editButton {
    margin-top: 10px
}

#profile-edit .buttons.verify,
#login-nosignup .buttons.verify,
#terms-of-use .buttons.verify,
#error-page .buttons.verify {
    display: flex;
    flex-direction: column;
    order: 3;
    margin-top: 10px
}

#profile-edit .buttons.buttons.verify>button:not(:last-of-type),
#login-nosignup .buttons.buttons.verify>button:not(:last-of-type),
#terms-of-use .buttons.buttons.verify>button:not(:last-of-type),
#error-page .buttons.buttons.verify>button:not(:last-of-type) {
    margin-bottom: 0
}

#profile-edit #bottom-menu,
#login-nosignup #bottom-menu,
#terms-of-use #bottom-menu,
#error-page #bottom-menu {
    border-top: none;
    padding-top: 0
}

#profile-edit .attr>ul,
#login-nosignup .attr>ul,
#terms-of-use .attr>ul,
#error-page .attr>ul {
    display: flex;
    flex-direction: column
}

#profile-edit .termsOfUseConsentGiven_li .attrEntry,
#login-nosignup .termsOfUseConsentGiven_li .attrEntry,
#terms-of-use .termsOfUseConsentGiven_li .attrEntry,
#error-page .termsOfUseConsentGiven_li .attrEntry {
    flex-direction: row;
    flex-wrap: wrap
}

#profile-edit .termsOfUseConsentGiven_li .attrEntry input,
#login-nosignup .termsOfUseConsentGiven_li .attrEntry input,
#terms-of-use .termsOfUseConsentGiven_li .attrEntry input,
#error-page .termsOfUseConsentGiven_li .attrEntry input {
    margin-left: 0;
    margin-right: 5px
}

#profile-edit .termsOfUseConsentGiven_li .attrEntry label,
#login-nosignup .termsOfUseConsentGiven_li .attrEntry label,
#terms-of-use .termsOfUseConsentGiven_li .attrEntry label,
#error-page .termsOfUseConsentGiven_li .attrEntry label {
    margin-bottom: 0;
    align-self: center;
    font-family: DT-light, Arial, sans-serif;
    font-size: 16px
}

#profile-edit .termsOfUseConsentGiven_li .attrEntry .terms-container,
#login-nosignup .termsOfUseConsentGiven_li .attrEntry .terms-container,
#terms-of-use .termsOfUseConsentGiven_li .attrEntry .terms-container,
#error-page .termsOfUseConsentGiven_li .attrEntry .terms-container {
    padding-left: 20px;
    padding-top: 5px;
    order: 2;
    flex-basis: 100%
}

#profile-edit .termsOfUseConsentGiven_li .attrEntry .terms-container ul li:not(:first-child),
#login-nosignup .termsOfUseConsentGiven_li .attrEntry .terms-container ul li:not(:first-child),
#terms-of-use .termsOfUseConsentGiven_li .attrEntry .terms-container ul li:not(:first-child),
#error-page .termsOfUseConsentGiven_li .attrEntry .terms-container ul li:not(:first-child) {
    margin-top: 5px
}

#profile-edit .termsOfUseConsentGiven_li .attrEntry .terms-link,
#login-nosignup .termsOfUseConsentGiven_li .attrEntry .terms-link,
#terms-of-use .termsOfUseConsentGiven_li .attrEntry .terms-link,
#error-page .termsOfUseConsentGiven_li .attrEntry .terms-link {
    color: #00f;
    cursor: pointer;
    width: unset;
    border: unset;
    background-color: unset
}

#profile-edit .termsOfUseConsentGiven_li .attrEntry .error.itemLevel,
#login-nosignup .termsOfUseConsentGiven_li .attrEntry .error.itemLevel,
#terms-of-use .termsOfUseConsentGiven_li .attrEntry .error.itemLevel,
#error-page .termsOfUseConsentGiven_li .attrEntry .error.itemLevel {
    order: 10
}

#register li:last-of-type>.attrEntry>input,
#profile-edit li:last-of-type>.attrEntry>input {
    margin-bottom: 0
}

#register-email #attributeVerification>.buttons {
    display: none
}

#register-email .buttons.verify {
    margin-top: 0
}

#error-page label {
    display: none
}

#error-page p {
    font-size: 1.25em;
    color: red;
    margin-block: 0
}

#password-reset ul,
#password-reset-email ul,
#password-set-email ul,
#password-expired ul {
    margin: 0;
    padding: 0
}

#password-reset li,
#password-reset-email li,
#password-set-email li,
#password-expired li {
    list-style-type: none
}

#password-reset .helpLink,
#password-reset-email .helpLink,
#password-set-email .helpLink,
#password-expired .helpLink {
    display: none
}

#password-reset .attrEntry,
#password-reset-email .attrEntry,
#password-set-email .attrEntry,
#password-expired .attrEntry {
    display: flex;
    flex-direction: column
}

#password-reset .sendButton,
#password-reset .verifyButton,
#password-reset .editButton,
#password-reset-email .sendButton,
#password-reset-email .verifyButton,
#password-reset-email .editButton,
#password-set-email .sendButton,
#password-set-email .verifyButton,
#password-set-email .editButton,
#password-expired .sendButton,
#password-expired .verifyButton,
#password-expired .editButton {
    margin-top: 10px
}

#password-reset #email_ver_but_resend,
#password-reset-email #email_ver_but_resend,
#password-set-email #email_ver_but_resend,
#password-expired #email_ver_but_resend {
    margin-top: 0
}

#password-reset .buttons.verify,
#password-reset-email .buttons.verify,
#password-set-email .buttons.verify,
#password-expired .buttons.verify {
    display: flex;
    flex-direction: column;
    order: 3
}

#password-reset #bottom-menu,
#password-expired #bottom-menu {
    border-top: none;
    padding-top: 0
}

#password-reset-email #attributeVerification>.buttons,
#password-set-email #attributeVerification>.buttons {
    display: none;
    padding-top: 10px;
    border-top: 1px solid black
}

#totp-setup h3,
#totp-verify h3,
#totp-reset h3 {
    text-align: center
}

#totp-setup ul,
#totp-verify ul,
#totp-reset ul {
    margin: 0;
    padding: 0
}

#totp-setup li,
#totp-verify li,
#totp-reset li {
    list-style-type: none
}

#totp-setup .content,
#totp-verify .content,
#totp-reset .content {
    min-width: 450px
}

#totp-setup .helpLink,
#totp-verify .helpLink,
#totp-reset .helpLink {
    display: none
}

#totp-setup .attrEntry,
#totp-verify .attrEntry,
#totp-reset .attrEntry {
    display: flex;
    flex-direction: column
}

#totp-setup .sendButton,
#totp-setup .verifyButton,
#totp-setup .editButton,
#totp-verify .sendButton,
#totp-verify .verifyButton,
#totp-verify .editButton,
#totp-reset .sendButton,
#totp-reset .verifyButton,
#totp-reset .editButton {
    margin-top: 10px
}

#totp-setup .buttons.verify,
#totp-verify .buttons.verify,
#totp-reset .buttons.verify {
    display: flex;
    flex-direction: column;
    order: 3;
    margin-top: 10px
}

#totp-setup .buttons.buttons.verify>button:not(:last-of-type),
#totp-verify .buttons.buttons.verify>button:not(:last-of-type),
#totp-reset .buttons.buttons.verify>button:not(:last-of-type) {
    margin-bottom: 0
}

#totp-setup #bottom-menu,
#totp-verify #bottom-menu,
#totp-reset #bottom-menu {
    border-top: none;
    padding-top: 0
}

#totp-setup .attr>ul,
#totp-verify .attr>ul,
#totp-reset .attr>ul {
    display: flex;
    flex-direction: column
}

#totp-setup .textInParagraph,
#totp-verify .textInParagraph,
#totp-reset .textInParagraph {
    display: none
}

#totp-setup #totpQrCodeControl-title,
#totp-setup #otpCode_label,
#totp-setup #QrCodeVerifyInstruction_label,
#totp-verify #totpQrCodeControl-title,
#totp-verify #otpCode_label,
#totp-verify #QrCodeVerifyInstruction_label,
#totp-reset #totpQrCodeControl-title,
#totp-reset #otpCode_label,
#totp-reset #QrCodeVerifyInstruction_label {
    font-size: 1rem;
    text-align: left
}

#totp-setup #totpQrCodeControl-title,
#totp-setup #QrCodeVerifyInstruction_label,
#totp-verify #totpQrCodeControl-title,
#totp-verify #QrCodeVerifyInstruction_label,
#totp-reset #totpQrCodeControl-title,
#totp-reset #QrCodeVerifyInstruction_label {
    font-family: DT-light, Arial, sans-serif
}

#totp-setup #QrCodeVerifyInstruction_label,
#totp-verify #QrCodeVerifyInstruction_label,
#totp-reset #QrCodeVerifyInstruction_label {
    margin-bottom: 15px
}

#totp-setup #QrCodeVerifyInstruction_label>.error.itemLevel,
#totp-verify #QrCodeVerifyInstruction_label>.error.itemLevel,
#totp-reset #QrCodeVerifyInstruction_label>.error.itemLevel {
    display: none
}

#totp-setup .qrCodeInfo,
#totp-setup .authenticatorInfoControl_li,
#totp-setup .qrCodeControlContent>a,
#totp-verify .qrCodeInfo,
#totp-verify .authenticatorInfoControl_li,
#totp-verify .qrCodeControlContent>a,
#totp-reset .qrCodeInfo,
#totp-reset .authenticatorInfoControl_li,
#totp-reset .qrCodeControlContent>a {
    display: none
}

#totp-setup #totpQrCodeControl-picture,
#totp-verify #totpQrCodeControl-picture,
#totp-reset #totpQrCodeControl-picture {
    border: 1px solid black;
    border-radius: 5px;
    justify-content: center;
    margin-block: 15px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-style: italic;
    color: gray
}

#totp-setup #totpQrCodeControl-picture>img,
#totp-verify #totpQrCodeControl-picture>img,
#totp-reset #totpQrCodeControl-picture>img {
    width: 150px;
    aspect-ratio: 1/1;
    margin-bottom: .2rem
}

#totp-setup #otpCode_label+.error.itemLevel,
#totp-verify #otpCode_label+.error.itemLevel,
#totp-reset #otpCode_label+.error.itemLevel {
    display: none
}

#totp-setup .otc,
#totp-verify .otc,
#totp-reset .otc {
    display: flex;
    justify-content: center
}

#totp-setup .otc input[type=number],
#totp-verify .otc input[type=number],
#totp-reset .otc input[type=number] {
    min-width: 0;
    flex: 1;
    line-height: 1;
    margin: .1em;
    padding: 8px 0;
    font-size: 2.65em;
    text-align: center;
    appearance: textfield;
    -webkit-appearance: textfield;
    border: 2px solid #969696;
    color: #000;
    border-radius: 10px
}

#totp-setup .otp-display,
#totp-verify .otp-display,
#totp-reset .otp-display {
    display: flex;
    flex-direction: column
}

#totp-setup #attributeList ul li:last-child,
#totp-verify #attributeList ul li:last-child,
#totp-reset #attributeList ul li:last-child {
    margin-bottom: 12px
}

#totp-setup #lostAccess_option,
#totp-verify #lostAccess_option,
#totp-reset #lostAccess_option {
    color: #00f;
    cursor: pointer;
    align-self: center
}

#totp-setup .CountryCode,
#totp-verify .CountryCode,
#totp-reset .CountryCode {
    display: none !important
}

#totp-setup input[type=number]:first-of-type,
#totp-verify input[type=number]:first-of-type,
#totp-reset input[type=number]:first-of-type {
    margin-left: 0
}

#totp-setup input[type=number]:last-of-type,
#totp-verify input[type=number]:last-of-type,
#totp-reset input[type=number]:last-of-type {
    margin-right: 0
}

#totp-setup input[type=number]:valid,
#totp-verify input[type=number]:valid,
#totp-reset input[type=number]:valid {
    border: 2px solid #005f0e;
    color: #005f0e
}

#totp-setup input::-webkit-outer-spin-button,
#totp-setup input::-webkit-inner-spin-button,
#totp-verify input::-webkit-outer-spin-button,
#totp-verify input::-webkit-inner-spin-button,
#totp-reset input::-webkit-outer-spin-button,
#totp-reset input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

#totp-reset #attributeVerification>.buttons {
    display: none
}

#totp-reset .VerificationControl {
    margin-bottom: 0 !important
}

#totp-reset .sendCode,
#totp-reset .sendNewCode {
    margin-bottom: 0
}

#totp-reset #mfaResetReadOnlyEmail {
    display: block;
    margin-block: 0;
    margin-bottom: 10px
}

#totp-reset .VerificationCode .attrEntry {
    margin-bottom: 10px
}

.hidden {
    display: none
}

:lang(ja) .intro-heading,
:lang(ja) .intro-text {
    text-align: left !important
}