.auth-page {
    --auth-input-height: 4rem;
    --auth-label-gap: 0.6rem;
    --auth-field-gap: 1.7rem;
    --auth-button-width: 14rem;
    --auth-button-height: 3.5rem;
}

.auth-page .grid.margin-125-0 {
    margin: 0 0 12.5rem;
}

.auth-page .center-span-14,
.account-page .center-span-14,
.my-articles-page .center-span-14 {
    min-width: 0;
}

.auth-page .info-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
}

.auth-page form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    text-align: left;
}

.auth-page form+form {
    margin-top: 1.7rem;
}

.auth-page label:not(.auth-checkbox) {
    width: 100%;
    min-width: 0;
    margin: 0 0 var(--auth-label-gap);
    font-family: var(--font-family-TimesNewRoman);
    font-size: var(--font-size-20);
    font-weight: normal;
    line-height: 1.3;
    letter-spacing: normal;
    color: var(--a11y-color-text, #000000);
}

.auth-page input:not(.honeypot-field):not([type="hidden"]):not([type="submit"]):not([type="checkbox"]) {
    width: 100%;
    min-width: 0;
    height: var(--auth-input-height);
    margin: 0 0 var(--auth-field-gap);
    padding: 0 0.8rem;
    border: 1px solid var(--a11y-color-text, #000000);
    border-radius: 0;
    background: transparent;
    color: var(--a11y-color-text, #000000);
    font-family: var(--font-family-TimesNewRoman);
    font-size: var(--font-size-20);
    line-height: 1.3;
    letter-spacing: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.auth-page input:focus,
.auth-page input:focus-visible {
    outline: none;
}

html[data-input-modality="keyboard"] .auth-page input:focus-visible {
    outline: 2px solid var(--focus-ring-color);
    outline-offset: 2px;
}

.auth-page .auth-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: var(--auth-button-width);
    min-height: var(--auth-button-height);
    margin: 0;
    border-radius: 50%;
    cursor: pointer;
    font-family: var(--font-family-ArialNarrow);
    font-size: var(--font-size-20);
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.auth-page .auth-submit--primary {
    padding: 0.6rem 1.8rem;
    border: 1px solid var(--a11y-button-border, #000000);
    background: var(--a11y-button-bg, #000000);
    color: var(--a11y-button-text, #ffffff);
}

.auth-page .auth-submit--secondary {
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--a11y-color-text, #000000);
    font-size: var(--font-size-20);
    line-height: 1.3;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.auth-page .auth-alt-link,
.auth-page .auth-profile-details {
    width: 100%;
    margin-top: 5.2rem;
    text-align: center;
}

.auth-page .auth-secondary-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.7rem;
    width: 100%;
    margin-top: 5.2rem;
}

.auth-page .auth-secondary-actions form,
.auth-page .auth-secondary-actions form+form {
    width: auto;
    margin-top: 0;
}

.auth-page .auth-secondary-actions .auth-submit--secondary {
    font-size: var(--font-size-15);
}

.auth-page .auth-readonly-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    text-align: left;
}

.auth-page .auth-readonly-field input[readonly] {
    color: #737373;
    color: color-mix(in srgb, var(--a11y-color-text, #000000) 55%, var(--a11y-color-bg, #ffffff));
    -webkit-text-fill-color: #737373;
    -webkit-text-fill-color: color-mix(in srgb, var(--a11y-color-text, #000000) 55%, var(--a11y-color-bg, #ffffff));
    cursor: default;
    opacity: 1;
}

.auth-page .auth-profile-details p {
    margin-bottom: 1.7rem;
}

.auth-page .auth-back-link {
    margin-top: 5.2rem;
}

.auth-page .auth-secondary-actions+.auth-back-link {
    margin-top: 1.7rem;
}

.auth-page .info-text>p:not(.auth-alt-link),
.auth-page .info-text>ul {
    margin-bottom: 1.7rem;
}

.auth-page .honeypot-field {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    white-space: nowrap;
}

.auth-page .auth-checkbox {
    display: flex;
    align-items: center;
    max-width: 100%;
    min-width: 0;
    gap: 0.8rem;
    margin: 0 0 var(--auth-field-gap);
    font-family: var(--font-family-TimesNewRoman);
    font-size: var(--font-size-20);
    line-height: 1.3;
    color: var(--a11y-color-text, #000000);
    cursor: pointer;
}

.auth-page .auth-checkbox input {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0;
    flex: 0 0 1.5rem;
    border: 1px solid var(--a11y-color-text, #000000);
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.auth-page .auth-checkbox input::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0.1rem;
    width: 0.4rem;
    height: 0.8rem;
    border: solid var(--a11y-color-text, #000000);
    border-width: 0 1px 1px 0;
    opacity: 0;
    transform: rotate(45deg);
}

.auth-page .auth-checkbox input:checked::after {
    opacity: 1;
}

.auth-page .auth-checkbox span {
    min-width: 0;
}

.account-page .account-sections,
.my-articles-page .my-articles-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.account-page .grid.margin-125-0 {
    margin: 0 0 12.5rem;
}

.my-articles-page .my-articles-info-grid {
    margin: 0 0 12.5rem;
}

@media (max-width: 800px) {
    .auth-page .grid.margin-125-0 {
        margin: 0 0 9rem;
    }

    .auth-page .auth-secondary-actions {
        flex-direction: column;
        align-items: center;
    }

    .auth-page .page-header__title {
        font-size: var(--font-size-58);
    }

    .account-page .grid.margin-125-0 {
        margin: 0 0 9rem;
    }

    .my-articles-page .my-articles-info-grid {
        margin: 0 0 9rem;
    }

    .account-page .page-header__title,
    .my-articles-page .page-header__title {
        font-size: var(--font-size-58);
    }
}

@media (max-width: 420px) {

    .auth-page .page-header__title,
    .account-page .page-header__title,
    .my-articles-page .page-header__title {
        font-size: var(--font-size-48);
    }
}
