/* reset */
html {
    font-family: Arial, Helvetica, sans-serif
}

h1 {
    margin: 0;
    font-size: 20px;
    font-weight: normal;
}

h2 {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
}

body {
    display: flex;
    padding: 0;
    margin: 0;
    background: #f4f4f5;
    min-height: 99vh;
}

form {
    width: 100%;
}

button {
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

a {
    color: #555;
    text-decoration: none;
}

.add-button {
    padding: 7px 15px;
    background: #000;
    color: #fff;
    border-radius: 8px;
}

.add-button:hover {
    color: #fff;
}

p {
    color: #999;
    font-size: 14px;
    line-height: 22px;
}

.unauthenticated .authenticated {
    display: none;
}

.authenticated .unauthenticated {
    display: none;
}

/* sidebar */
aside {
    width: 270px;
    display: flex;
    flex-direction: column;

    header {
        padding: 20px 0;
        border-bottom: 1px solid #dadada;
    }

    header .logo svg {
        width: 30px;
        height: 30px;
        margin: 0 10px 0 10px;
        vertical-align: middle;
        line-height: 18px;
    }

    header .logo-flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    header a {
        padding: 0px;
        margin: 5px 0;
    }

    header .nav-button {
        display: none;
        cursor: pointer;
    }

    header .nav-button svg {
        width: 20px;
        height: 20px;
        margin: 0 10px 0 10px;
        vertical-align: middle;
        line-height: 18px;
    }

    nav {
        margin: 0;
        padding: 15px 0;
    }

    nav a {
        border-radius: 10px;
        display: block;
        clear: both;
        padding: 8px 10px;
        line-height: 15px;
        font-size: 14px;
        background-color: transparent;
        transition: background-color 0.3s ease;
        /* <— this enables the fade */
    }

    nav a svg {
        width: 20px;
        height: 20px;
        vertical-align: middle;
        line-height: 18px;
    }

    nav a span {
        vertical-align: middle;
        margin: 0 0 0 10px;
    }

    nav a.active {
        background: #d8d8d8;
    }

    :hover nav a {
        background: transparent;
    }

    nav a:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

    footer {
        border-top: 1px solid #dadada;
        padding-top: 10px;
        margin: auto 0px 20px 0px;
    }

    footer a {
        display: block;
        clear: both;
        padding: 8px 10px;
    }

    .aside-content {
        width: 270px;
        margin: 0 10px;
    }

    .project-selector {
        padding: 0 0 0 56px;
        cursor: pointer;
        display: inline-block;
    }

    .project-selector svg {
        vertical-align: middle;
        width: 15px;
        margin: 0 0 0 8px;
        color: #7c7c7c;
    }

    .project-selector a {
        vertical-align: middle;
        font-size: 12px;
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 950px) {
    aside {
        width: 38px;
    }

    aside .aside-content {
        margin: 0 0;
        width: 100vw;
    }

    aside header {
        padding: 7px 0;
    }

    .logo {
        display: none;
    }

    aside header .nav-button {
        display: inline;
    }

    .project-selector {
        float: right;
    }
}

/* main */
main {
    padding: 5px 5px 5px 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;

    .page {
        position: relative;
        padding: 40px;
        background: #fff;
        border: 1px solid #dadada;
        border-radius: 5px;
        flex-grow: 1
    }

    .page .max-width-center {
        max-width: 1100px;
        margin: 0 auto;
    }

    .page h1 {}

    .page h1 a {
        color: black;
    }
}

.title-help {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    margin-top: -5px;
    vertical-align: middle;
}

.title-help-trigger {
    width: 16px;
    height: 16px;
    padding: 0;
    border: 1px solid #2f2f35;
    border-radius: 999px;
    background: #2f2f35;
    color: #fff;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    font-weight: bold;
}

.title-help-bubble {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    padding: 10px 12px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    line-height: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 20;
}

.title-help-bubble::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #111;
}

.title-help:hover .title-help-bubble,
.title-help:focus-within .title-help-bubble {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 950px) {
    .title-help-bubble {
        left: auto;
        right: 0;
        top: calc(100% + 10px);
        transform: none;
        width: 240px;
    }

    .title-help-bubble::before {
        left: auto;
        right: 10px;
        top: -6px;
        transform: none;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        border-bottom: 6px solid #111;
    }
}

@media (max-width: 950px) {
    main {
        margin-top: 25px;
    }

    main .page {
        padding: 20px 15px;
    }
}

/* list view */
.list-view-add-button {
    padding: 7px 15px;
    font-size: 14px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    float: right;
    margin: -5px 0 0 5px;
}

table {
    width: 100%;
    font-size: 14px;
    color: #7d7d7d;
    margin-top: 30px;

    thead {
        border-bottom: 1px solid #dadada;
    }

    thead th {
        font-weight: normal;
        padding: 10px 0px;
        text-align: left;
        border-bottom: 1px solid #dadada;
    }

    tbody tr td {
        padding: 20px 0;
        border-bottom: 1px solid #dadada;
    }

    a {
        text-decoration: underline;
    }
}

.slim-table tbody tr td {
    padding: 10px 0;
    border: none;
}

/* forms */
.auth-form {
    font-size: 14px;
    max-width: 500px;

    h1 {
        text-align: center;
    }

    .float-right {
        line-height: 33px;
    }

    button {
        padding: 7px 15px;
        background: #000;
        color: #fff;
        border-radius: 8px;
    }
}

form {

    hr {
        border: none;
        border-bottom: 1px solid #dadada;
        margin: 20px 0;
    }

    p {
        margin: 10px 0;
    }

    input {
        width: 100%;
        padding: 10px 10px;
        border-radius: 7px;
        border: 1px solid #dadada;
        box-sizing: border-box;
    }

    textarea {
        width: 100%;
        padding: 10px 10px;
        border-radius: 7px;
        border: 1px solid #dadada;
        box-sizing: border-box;
        font-family: arial;
    }

    select {
        width: 100%;
        padding: 10px 10px;
        border-radius: 7px;
        border: 1px solid #dadada;
        box-sizing: border-box;
    }

    button {
        cursor: pointer;
    }

    button:disabled {
        color: #5e5e5e;
        cursor: not-allowed;
    }

    small {
        color: red;
    }

    .loader {
        display: inline-block;
        vertical-align: bottom;
        margin: 0 0 0 10px;
        border: 3px solid #f3f3f3;
        /* Light grey */
        border-top: 3px solid #3498db;
        /* Blue */
        border-radius: 50%;
        width: 25px;
        height: 25px;
        animation: spin 2s linear infinite;
    }
}

.horizontal-form {
    label {
        width: 100%;
        display: inline-flex;
        margin: 20px 0;
    }

    label>div {
        width: 50%;
    }
}

.stacked-form {
    margin: 0 auto;

    label {
        margin: 15px 0 0 0;
        display: block;
        position: relative;
    }

    label span {
        position: absolute;
        left: 10px;
        padding: 0 5px;
        transition: top 0.3s ease, color 0.3s ease, background 0.3s ease;
        font-size: 14px;
    }

    label.untouched span {
        top: 15px;
        color: #a6a6a6;
    }

    label.touched span {
        top: -5px;
        color: #000000;
        background: #fff;
        font-size: 12px;
    }

    input {
        padding: 15px;
    }

    textarea {
        padding: 15px;
    }

    select {
        padding: 15px;
    }

    button {
        padding: 10px 15px;
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}


/* utilities */
.hidden {
    display: none;
}

.bold {
    font-weight: bold;
}

.fade {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}

.in {
    opacity: 1;
    visibility: visible;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-auto {
    margin-left: auto;
}

.pb-10 {
    padding-bottom: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.p-10 {
    padding: 10px;
}

.pl-1 {
    padding-left: 5px;
}

.px-1 {
    padding-left: 5px;
    padding-right: 5px;
}

.pl-4 {
    padding-left: 20px;
}

.pr-4 {
    padding-right: 20px;
}

.underline {
    text-decoration: underline;
}

.pointer {
    cursor: pointer;
}

.text-align-right {
    text-align: right;
}

.flex1 {
    flex: 1;
}

.dflex {
    display: flex;
}

.w50 {
    width: 50%;
}

.w100 {
    width: 100%;
}

.table-col-100 {
    width: 100px;
}

.black {
    color: black;
}

.red {
    color: red;
}

.f12 {
    font-size: 12px;
}

.float-right {
    float: right;
}

.horizontal-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.border-top {
    border-top: 1px solid #dadada;
}

.border-bottom {
    border-bottom: 1px solid #dadada;
}

.table tr td {}

.alternating-bg-color tr:nth-child(even) {
    background-color: #f2f2f2;
    border-bottom: 1px solid #dadada;
    border-top: 1px solid #dadada;
}

/* error page */
.error-page {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* info box */
.info-box {
    background: #fefce8;
    border-radius: 5px;
    padding: 1px 20px 40px 50px;
    font-size: 14px;
    margin: 50px 0 0 0;
    line-height: 22px;

    svg {
        width: 20px;
        height: 20px;
        color: #facc15;
        float: left;
        margin-left: -30px;
    }

    h3 {
        color: #854d0e;
        margin-top: 20px;
        font-weight: normal;
        font-size: 14px;
        margin-bottom: 8px;
    }

    p {
        color: #a16207;
    }

    ul {
        padding: 0;
        margin: 0;
        list-style: inside disc;
    }

    ul li {
        color: #a16207;
    }
}

/* custom questions */
.questions {
    margin: 0;
    padding: 0;
    list-style: inside number;
}

.question {
    margin: 0px 0 0 0;
    padding: 20px 0 20px 0;
}

.question .question-header {
    margin: -27px 0 0 0;
}

.question .question-number {
    font-size: 23px;
    padding: 5px 0px;
    border-radius: 5px;
    width: 40px;
    text-align: center;
}

.question select.custom-question-type {
    width: auto;
    margin: 4px 0 0 40px;
    padding: 0;
    vertical-align: top;
    border: none;
    text-align: right;
    outline: none;
    box-shadow: none;
}

.question .question-header a {
    vertical-align: middle;
    float: right;
    color: #8fbfdc;
    margin: 5px 5px 0 5px;
    cursor: pointer;
}

.question .question-header a.question-delete-button {
    color: red;
}

.add-question-link {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #dadada;
    color: #000000;
    cursor: pointer;
}

.add-question-link:hover {
    background: #d6e3f3;
}

.question:first-child #move-question-up-button {
    display: none;
}

.question:last-child #move-question-down-button {
    display: none;
}

ol li::marker {
    font-size: 24px;
    color: rgb(0, 0, 0);
    /* or whatever you want */
    font-weight: bold;
}

/* loading animation */
.loading-ellipse::after {
    content: "";
    animation: dots 1.0s steps(4, end) infinite;
}

@keyframes dots {
    0% {
        content: "";
    }

    25% {
        content: ".";
    }

    50% {
        content: "..";
    }

    75% {
        content: "...";
    }

    100% {
        content: "";
    }
}

/* Instant Suite application shell */
:root {
    --suite-bg: #f7f7f6;
    --suite-panel: #fff;
    --suite-text: #171717;
    --suite-muted: #686868;
    --suite-line: #dededc;
    --suite-active: #e7e7e6;
    --suite-sidebar: 310px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--suite-bg);
}

body {
    min-height: 100vh;
    background: var(--suite-bg);
    color: var(--suite-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body>aside {
    width: var(--suite-sidebar);
    flex: 0 0 var(--suite-sidebar);
    min-height: 100vh;
    background: var(--suite-bg);
}

aside .aside-content {
    width: auto;
    height: 100%;
    margin: 0 22px;
}

aside header {
    position: relative;
    min-height: 102px;
    padding: 22px 8px;
    border-bottom: 0;
    align-items: center;
}

aside header::after,
aside footer::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 14px;
    background: center / 100% 14px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 266 14' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='266' y2='0' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d1d1cd' stop-opacity='0'/%3E%3Cstop offset='.38' stop-color='%23d1d1cd'/%3E%3Cstop offset='.62' stop-color='%23d1d1cd'/%3E%3Cstop offset='1' stop-color='%23d1d1cd' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 7H120M146 7H266' stroke='url(%23g)' stroke-width='1'/%3E%3Cpath d='m120 7 4-3 4 3-4 3-4-3Zm7 0 6-4.5 6 4.5-6 4.5-6-4.5Zm11 0 4-3 4 3-4 3-4-3Z' stroke='%239a9a93' stroke-width='.85' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m130 7 3-2.25L136 7l-3 2.25L130 7Z' stroke='%23b0b0aa' stroke-width='.7'/%3E%3C/svg%3E");
    pointer-events: none;
}

aside header::after {
    bottom: -7px;
}

aside header .logo {
    display: inline-flex;
    align-items: center;
    margin-right: 14px;
}

aside header .logo svg,
aside header .logo img {
    width: 37px;
    height: 37px;
    margin: 0;
    object-fit: contain;
}

aside header .logo svg {
    fill: #0d0d0d;
}

aside header .logo-flex {
    gap: 3px;
}

aside header .logo-flex a {
    margin: 0;
    color: var(--suite-text);
}

aside header .logo-flex>div:first-child a {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

aside header .logo-flex .f12 {
    padding-left: 0;
    color: #484848;
    font-size: 13px;
}

aside nav {
    padding: 22px 0;
}

aside nav a,
aside footer a {
    display: flex;
    align-items: center;
    min-height: 44px;
    margin: 1px 0;
    padding: 10px 13px;
    border-radius: 8px;
    color: #3d3d3d;
    font-size: 15px;
    line-height: 20px;
    transition: background-color 140ms ease, color 140ms ease;
}

aside nav a svg,
aside footer a svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: #3e3e3e;
    object-fit: contain;
}

aside nav a img,
aside footer a img {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    margin-left: -7px;
    color: #3e3e3e;
    object-fit: contain;
}

aside nav a>span,
aside footer a>span {
    margin-left: 14px;
}

.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    font-weight: 750;
    letter-spacing: -0.025em;
}

.brand-wordmark .brand-wordmark-prefix,
.brand-wordmark .brand-wordmark-suffix {
    margin-left: 0;
}

.brand-wordmark .brand-wordmark-prefix {
    color: inherit;
}

.brand-wordmark .brand-wordmark-suffix {
    color: #0256fc;
}

.brand-wordmark .brand-wordmark-auth {
    color: #0256fc;
}

.brand-wordmark .brand-wordmark-forms {
    color: #03c185;
}

.brand-wordmark .brand-wordmark-surveys {
    color: #6d1be2;
}

.brand-wordmark .brand-wordmark-suite {
    color: #fd5f2d;
}

aside nav a:hover,
aside footer a:hover {
    background: #ededec;
    color: #111;
}

aside nav a.active,
aside footer a.active {
    background: var(--suite-active);
    color: #111;
}

aside footer {
    position: relative;
    margin: 0;
    padding: 13px 0 0;
    border-top: 0;
}

aside footer::before {
    top: -7px;
}

aside footer nav {
    padding: 14px 0;
}

.sidebar-ornamental-divider {
    width: calc(100% - 24px);
    height: 14px;
    margin: 9px auto;
    background: center / 100% 14px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 266 14' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='266' y2='0' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23d1d1cd' stop-opacity='0'/%3E%3Cstop offset='.38' stop-color='%23d1d1cd'/%3E%3Cstop offset='.62' stop-color='%23d1d1cd'/%3E%3Cstop offset='1' stop-color='%23d1d1cd' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 7H120M146 7H266' stroke='url(%23g)' stroke-width='1'/%3E%3Cpath d='m120 7 4-3 4 3-4 3-4-3Zm7 0 6-4.5 6 4.5-6 4.5-6-4.5Zm11 0 4-3 4 3-4 3-4-3Z' stroke='%239a9a93' stroke-width='.85' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m130 7 3-2.25L136 7l-3 2.25L130 7Z' stroke='%23b0b0aa' stroke-width='.7'/%3E%3C/svg%3E");
    pointer-events: none;
}

body>main {
    min-width: 0;
    min-height: 100vh;
    padding: 8px 8px 8px 0;
}

main .page {
    min-height: calc(100vh - 16px);
    padding: 0;
    overflow: auto;
    background: var(--suite-panel);
    border: 1px solid var(--suite-line);
    border-radius: 9px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

main .page .max-width-center {
    max-width: none;
    min-height: calc(100vh - 18px);
    margin: 0;
}

h1.page-title {
    min-height: 130px;
    padding: 45px 58px 40px;
    color: var(--suite-text);
    font-size: 34px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: -0.035em;
}

.title-help {
    margin-left: 12px;
    margin-top: -3px;
}

.title-help-trigger {
    width: 23px;
    height: 23px;
    border: 1.5px solid #9b9b9b;
    background: transparent;
    color: #777;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.list-view-add-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 41px 59px 0 12px;
    padding: 0 24px;
    border-radius: 9px;
    background: #0b0b0b;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.list-view-add-button:hover {
    background: #272727;
    color: #fff;
}

.list-view-add-button.create-button::before {
    content: "";
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin-right: 11px;
    background:
        linear-gradient(#fff, #fff) center / 15px 1.5px no-repeat,
        linear-gradient(#fff, #fff) center / 1.5px 15px no-repeat;
}

table.resource-table {
    clear: both;
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    color: #4f4f4f;
    font-size: 15px;
}

table.resource-table thead {
    border-top: 1px solid var(--suite-line);
    border-bottom: 1px solid var(--suite-line);
    background: #f5f5f4;
}

table.resource-table thead th {
    height: 82px;
    padding: 24px 30px;
    border-bottom: 1px solid var(--suite-line);
    color: #505050;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
}

table.resource-table thead th::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 16px;
    margin-left: 10px;
    background: center / 12px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' viewBox='0 0 12 16' fill='none'%3E%3Cpath d='M3 6L6 3L9 6' stroke='%23656565' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 6L6 3L9 6' transform='rotate(180 6 8)' stroke='%23656565' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    vertical-align: -3px;
}

table.resource-table th:first-child,
table.resource-table td:first-child {
    padding-left: 66px;
}

table.resource-table th:last-child,
table.resource-table td:last-child {
    padding-right: 58px;
}

table.resource-table tbody td {
    padding: 20px 30px;
    border-bottom: 1px solid #ececea;
    color: #575757;
    vertical-align: middle;
}

table.resource-table tbody tr.clickable-row,
table.resource-table tbody tr[data-href],
tbody tr.clickable-row {
    cursor: pointer;
}

table.resource-table tbody tr:not(.list-state-row):hover {
    background: #f8fafc;
}

table.resource-table tbody a {
    color: #202020;
    text-decoration: none;
    font-weight: 500;
}

table.resource-table tbody a:hover {
    text-decoration: underline;
}

table.resource-table .list-state-row td {
    height: calc(100vh - 222px);
    min-height: 520px;
    padding: 0 !important;
    border: 0;
}

.list-state {
    display: flex;
    min-height: calc(100vh - 224px);
    padding: 72px 24px 15vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.list-state-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 22px;
    color: #8e8e8e;
}

.list-state-icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.list-state-icon rect,
.list-state-icon circle,
.list-state-icon path {
    fill: #fff;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.list-state--error .list-state-icon {
    color: #b7b7b7;
}

.list-state h2 {
    color: #161616;
    font-size: 24px;
    font-weight: 650;
    line-height: 32px;
    letter-spacing: -0.02em;
}

.list-state p {
    max-width: 330px;
    margin: 14px 0 24px;
    color: #676767;
    font-size: 16px;
    line-height: 25px;
}

.list-state-action {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 8px;
    background: #0a0a0a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

table.resource-table tbody a.list-state-action {
    color: #fff;
    text-decoration: none;
}

table.resource-table tbody a.list-state-action:hover,
.list-state-action:hover {
    background: #272727;
    color: #fff;
    text-decoration: none;
}

/* Detail, create, edit, and authentication pages */
.stacked-form:not(.auth-form) {
    max-width: 780px;
    margin: 0;
    padding: 46px 58px 64px;
}

.stacked-form:not(.auth-form)>.horizontal-flex:first-child {
    margin-bottom: 28px;
}

.stacked-form:not(.auth-form) h1,
.max-width-center>.horizontal-flex h1 {
    font-size: 27px;
    font-weight: 550;
    letter-spacing: -0.025em;
}

.max-width-center>.horizontal-flex:first-child {
    padding: 46px 58px 30px;
}

.max-width-center>[id$="-details"] {
    margin-right: 58px;
    margin-left: 58px;
}

.auth-form {
    width: calc(100% - 48px);
    max-width: 520px;
    margin: 8vh auto 0;
    padding: 42px;
    border: 1px solid var(--suite-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.auth-form h1 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.auth-form p {
    color: var(--suite-muted);
    font-size: 14px;
    line-height: 22px;
}

form input,
form textarea,
form select {
    border-color: #cfcfcd;
    background: #fff;
    outline: none;
    transition: border-color 140ms ease, box-shadow 140ms ease;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: #777;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.suite-bootstrap-error {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid #e4c9c6;
    border-radius: 8px;
    background: #fff7f6;
}

.suite-bootstrap-error p {
    margin: 0 0 12px;
    color: #713b36;
}

.suite-bootstrap-error .suite-bootstrap-retry {
    min-height: 40px;
    padding: 0 16px;
    background: #111;
    color: #fff;
}

@media (max-width: 950px) {
    body {
        display: block;
    }

    body>aside {
        width: 100%;
        min-height: 70px;
        height: 70px;
        overflow: hidden;
    }

    aside.is-open {
        height: auto;
    }

    aside .aside-content {
        width: auto;
        margin: 0 14px;
    }

    aside header {
        min-height: 70px;
        padding: 13px 6px;
        border-bottom: 0;
    }

    aside header .logo {
        display: inline-flex;
    }

    aside header .logo svg,
    aside header .logo img {
        width: 32px;
        height: 32px;
    }

    aside header .logo-flex>div:first-child a {
        font-size: 17px;
    }

    aside header .nav-button {
        display: inline-flex;
        order: 3;
        margin-left: auto;
    }

    aside header .nav-button svg {
        margin: 0;
        width: 22px;
        height: 22px;
    }

    aside nav,
    aside footer {
        display: none;
    }

    aside.is-open nav,
    aside.is-open footer {
        display: block;
    }

    body>main {
        min-height: calc(100vh - 70px);
        margin: 0;
        padding: 0 8px 8px;
    }

    main .page {
        min-height: calc(100vh - 78px);
    }

    h1.page-title {
        min-height: 98px;
        padding: 29px 24px;
        font-size: 29px;
        line-height: 38px;
    }

    .list-view-add-button {
        min-height: 42px;
        margin: 28px 24px 0 8px;
        padding: 0 16px;
        font-size: 14px;
    }

    table.resource-table {
        min-width: 720px;
    }

    table.resource-table th:first-child,
    table.resource-table td:first-child {
        padding-left: 28px;
    }

    table.resource-table th:last-child,
    table.resource-table td:last-child {
        padding-right: 28px;
    }

    .list-state {
        align-items: flex-start;
        padding-right: 28px;
        padding-left: 28px;
        text-align: left;
    }

    .stacked-form:not(.auth-form) {
        max-width: none;
        padding: 30px 24px 48px;
    }

    .max-width-center>.horizontal-flex:first-child {
        padding: 30px 24px 24px;
    }

    .max-width-center>[id$="-details"] {
        margin-right: 24px;
        margin-left: 24px;
    }
}

/* Create pages */
.create-page {
    width: 100%;
    padding: 52px 48px 76px;
}

.create-page-header {
    margin-bottom: 52px;
}

.create-page-header h1 {
    display: flex;
    align-items: baseline;
    gap: 9px;
    color: #171717;
    font-size: 31px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.035em;
}

.create-page-header h1 a {
    color: #737373;
    font-weight: 400;
}

.create-page-header h1 span {
    color: #6d6d6d;
    font-weight: 400;
}

.create-page-header h1 strong {
    font-weight: 650;
}

.create-page-header p {
    max-width: 780px;
    margin: 12px 0 0;
    color: #646464;
    font-size: 16px;
    line-height: 24px;
}

/* Compact detail-page breadcrumb hierarchy */
.max-width-center>.horizontal-flex.compact-breadcrumbs:first-child {
    padding: 24px 28px 10px;
}

.compact-breadcrumbs h1 {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 9px;
    color: #151515;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.02em;
}

.compact-breadcrumbs .breadcrumb-title,
.compact-breadcrumbs .breadcrumb-name,
.compact-breadcrumbs .breadcrumb-separator {
    flex: 0 0 auto;
    padding: 0;
    color: #151515;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
}

.compact-breadcrumbs .breadcrumb-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-breadcrumbs .breadcrumb-suffix {
    min-width: 0;
    overflow: hidden;
    color: #151515;
    font-size: 20px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.create-page-header-compact {
    margin-bottom: 36px;
}

.create-page-header-compact p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
}

.auth-create-page h1.page-title {
    min-height: auto;
    padding: 44px 58px 6px;
    font-size: 32px;
    font-weight: 750;
    line-height: 40px;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.auth-create-content {
    padding: 0 58px 76px;
}

.auth-create-description {
    max-width: 100%;
    margin: 0 0 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    color: #64748b;
    font-size: 15px;
    line-height: 24px;
}

.create-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
    gap: 52px;
    align-items: start;
}

.create-form-card {
    width: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.create-form-card {
    overflow: visible;
}

.create-form-body {
    padding: 0;
}

.create-field {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f1f3f5;
}

.create-field:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.create-field-heading {
    display: flex;
    min-height: 22px;
    margin-bottom: 12px;
    align-items: center;
    gap: 10px;
}

.create-field-heading label {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
}

.create-field-help {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.create-field-help-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 1.5px solid #a8a8a8;
    border-radius: 50%;
    background: #fff;
    color: #666;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.create-field-help-trigger:hover,
.create-field-help-trigger:focus,
.create-field-help:hover .create-field-help-trigger {
    border-color: #111827;
    background: #111827;
    color: #fff;
    outline: none;
}

.create-field-help-bubble {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    width: 270px;
    padding: 9px 13px;
    background: #111827;
    color: #f9fafb;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 40;
    text-align: left;
    white-space: normal;
}

.create-field-help-bubble::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #111827;
}

.create-field-help:hover .create-field-help-bubble,
.create-field-help:focus-within .create-field-help-bubble {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 950px) {
    .create-field-help-bubble {
        left: auto;
        right: 0;
        top: calc(100% + 8px);
        transform: none;
        width: 230px;
    }

    .create-field-help-bubble::before {
        left: auto;
        right: 8px;
        top: -6px;
        transform: none;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        border-bottom: 6px solid #111827;
        border-top: 0;
    }
}

.create-field input,
.create-field textarea,
.create-field select {
    width: 100%;
    min-height: 52px;
    padding: 13px 18px;
    border: 1.5px solid #dcdfe4;
    border-radius: 9px;
    background: #fff;
    color: #0f172a;
    font-family: inherit;
    font-size: 15px;
    line-height: 22px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.create-field textarea {
    min-height: 120px;
    resize: vertical;
}

.create-field select {
    appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='m2 2 5 5 5-5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 18px center;
    background-repeat: no-repeat;
}

.create-field input::placeholder,
.create-field textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.create-field input:focus,
.create-field textarea:focus,
.create-field select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3.5px rgba(37, 99, 235, 0.12);
    outline: none;
}

.create-field input.error,
.create-field textarea.error,
.create-field select.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.create-field-hint {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 13.5px;
    line-height: 20px;
}

.create-field .field-error {
    display: block;
    margin-top: 8px;
    color: #ef4444;
    font-size: 13px;
}

.create-checkbox-field {
    margin-top: 4px;
    margin-bottom: 28px;
    padding: 20px 22px;
    border: 1px solid #e2e4e8;
    border-radius: 9px;
    background: #f8fafc;
}

.create-checkbox-field label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
}

.create-checkbox-field input {
    width: 19px;
    height: 19px;
    margin: 2px 0 0;
    accent-color: #0f172a;
}

.create-checkbox-field label>span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.create-checkbox-field strong {
    color: #0f172a;
    font-size: 15px;
}

.create-checkbox-field label>span>span {
    color: #64748b;
    font-size: 14px;
    line-height: 20px;
}

.create-form-actions {
    display: flex;
    min-height: auto;
    padding: 24px 0 0;
    align-items: center;
    gap: 12px;
    border-top: none;
    background: transparent;
}

.create-primary-action,
.create-secondary-action {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

.create-primary-action {
    border: 1px solid #0f172a;
    background: #0f172a;
    color: #fff;
}

.create-primary-action:hover {
    background: #1e293b;
    border-color: #1e293b;
}

.create-secondary-action {
    border: 1.5px solid #e2e4e8;
    background: #fff;
    color: #0f172a;
}

.create-secondary-action:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

.create-next-card {
    position: sticky;
    top: 32px;
    display: block;
    min-width: 0;
    padding: 0 0 0 52px;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.create-next-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.create-next-rocket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    flex-shrink: 0;
}

.create-next-rocket svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #2563eb;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.create-next-heading h2 {
    color: #0f172a;
    font-size: 19px;
    font-weight: 700;
    line-height: 26px;
    margin: 0;
}

.create-next-card>p {
    margin: 28px 0 14px;
    color: #64748b;
    font-size: 14.5px;
    line-height: 22px;
}

.create-next-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.create-next-card li {
    display: flex;
    min-height: 62px;
    padding: 16px 0;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #f1f3f5;
    color: #334155;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 22px;
}

.create-next-card li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.create-next-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eff6ff;
    color: #2563eb;
}

.create-next-item-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #2563eb;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1200px) {
    .create-page-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
        gap: 40px;
    }

    .create-next-card {
        padding-left: 40px;
    }
}

@media (max-width: 1050px) {
    .create-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .create-next-card {
        position: static;
        border-left: none;
        border-top: 1px solid #e5e7eb;
        padding: 36px 0 0;
    }
}

@media (max-width: 650px) {
    .create-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .create-primary-action,
    .create-secondary-action {
        width: 100%;
    }

    .create-form-actions {
        min-height: 96px;
        padding: 21px 22px;
    }

    .create-next-card {
        padding: 28px 24px;
    }
}

/* Minimal, full-page authentication experience */
body:has(.auth-page) {
    display: block;
    min-height: 100vh;
    background: #fff;
}

body:has(.auth-page)>aside {
    display: none;
}

body:has(.auth-page)>main {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body:has(.auth-page) main .page,
body:has(.auth-page) main .page .max-width-center {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.auth-page {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 64px 24px 72px;
    background:
        radial-gradient(circle at 50% 18%, rgba(0, 0, 0, 0.018), transparent 34%),
        #fff;
}

.auth-page .auth-form {
    width: 100%;
    max-width: 440px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #111;
    font-size: 14px;
}

.auth-page .auth-header {
    margin-bottom: 29px;
}

.auth-page .auth-header h1,
.auth-page .auth-form h1 {
    margin: 0;
    color: #0d0d0d;
    font-size: 32px;
    font-weight: 670;
    line-height: 1.16;
    letter-spacing: -0.035em;
    text-align: left;
}

.auth-page .auth-header p,
.auth-page .auth-form .auth-header p {
    max-width: 420px;
    margin: 8px 0 0;
    color: #646464;
    font-size: 15px;
    line-height: 1.5;
}

.auth-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-page .auth-field,
.auth-page .stacked-form .auth-field {
    position: relative;
    display: block;
    margin: 0;
}

.auth-page .auth-field>span,
.auth-page .stacked-form .auth-field>span {
    position: static;
    display: block;
    margin: 0 0 8px;
    padding: 0;
    background: transparent;
    color: #1c1c1c;
    font-size: 13px;
    font-weight: 570;
    line-height: 18px;
}

.auth-page .auth-field input,
.auth-page .stacked-form .auth-field input {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid #d0d0d0;
    border-radius: 7px;
    background: #fff;
    color: #171717;
    font: inherit;
    font-size: 14px;
    outline: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.015);
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.auth-page .auth-field input::placeholder {
    color: #aaa;
    opacity: 1;
}

.auth-page .auth-field input:hover {
    border-color: #b9b9b9;
}

.auth-page .auth-field input:focus {
    border-color: #777;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.065);
}

.auth-page .auth-field input.error,
.auth-page .auth-field input[style*="border-color: red"] {
    border-color: #c9473d !important;
    background: #fffafa !important;
}

.auth-page .auth-password-field input {
    padding-right: 48px;
}

.auth-password-toggle {
    position: absolute;
    right: 8px;
    top: 33px;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #888;
    cursor: pointer;
    transition: color 150ms ease, background-color 150ms ease;
}

.auth-password-toggle:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

.auth-password-toggle:focus-visible {
    outline: 2px solid #666;
    outline-offset: -1px;
}

.auth-password-toggle:active {
    background: #e8e8e8;
    color: #000;
}

.auth-eye {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask: center / 20px 20px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 10s3.5 5 10 5 10-5 10-5'/%3E%3Cpath d='M4.5 13.5 3 16.5'/%3E%3Cpath d='M9 15 8 18.5'/%3E%3Cpath d='M15 15l1 3.5'/%3E%3Cpath d='M19.5 13.5 21 16.5'/%3E%3C/svg%3E");
    mask: center / 20px 20px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 10s3.5 5 10 5 10-5 10-5'/%3E%3Cpath d='M4.5 13.5 3 16.5'/%3E%3Cpath d='M9 15 8 18.5'/%3E%3Cpath d='M15 15l1 3.5'/%3E%3Cpath d='M19.5 13.5 21 16.5'/%3E%3C/svg%3E");
    transition: opacity 120ms ease;
}

.auth-password-toggle.is-visible .auth-eye {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3.2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3.2'/%3E%3C/svg%3E");
}

.auth-submit-row {
    position: relative;
    display: block;
    margin-top: 20px;
}

.auth-primary,
.auth-page .auth-form button.auth-primary,
.auth-page .auth-primary-link {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid #050505;
    border-radius: 7px;
    background: #050505;
    color: #fff;
    font-size: 14px;
    font-weight: 540;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
    transition: background-color 150ms ease, transform 100ms ease, box-shadow 150ms ease;
}

.auth-primary:hover,
.auth-page .auth-form button.auth-primary:hover,
.auth-page .auth-primary-link:hover {
    background: #242424;
    color: #fff;
}

.auth-primary:active {
    transform: translateY(1px);
}

.auth-page .auth-form button.auth-primary:focus-visible,
.auth-page .auth-primary-link:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.16);
    outline-offset: 3px;
}

.auth-page .auth-form button.auth-primary:disabled {
    background: #242424;
    color: #fff;
    cursor: wait;
    opacity: .82;
}

.auth-submit-row>.loader {
    position: absolute;
    top: 14px;
    right: 15px;
    width: 19px;
    height: 19px;
    margin: 0;
    border: 2px solid rgba(255, 255, 255, .42);
    border-top-color: #fff;
}

.auth-page .auth-form small {
    display: block;
    margin-top: 7px;
    color: #b42318;
    font-size: 12px;
    line-height: 18px;
}

.auth-support-link {
    margin-top: 16px;
    text-align: center;
}

.auth-support-link a,
.auth-switch a,
.auth-muted-link a,
.auth-back-link {
    color: #555;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.auth-support-link a:hover,
.auth-switch a:hover,
.auth-muted-link a:hover,
.auth-back-link:hover {
    color: #111;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 25px 0 17px;
    color: #777;
    font-size: 12px;
    line-height: 16px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #dedede;
}

.auth-switch,
.auth-page .auth-form p.auth-switch {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
}

.auth-switch a {
    color: #343434;
}

.auth-form-note,
.auth-page .auth-form p.auth-form-note {
    margin: 13px 0 0;
    color: #646464;
    font-size: 14px;
    line-height: 1.5;
}

.auth-status {
    text-align: left;
}

.auth-status-mark {
    position: relative;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid #dedede;
    border-radius: 50%;
    background: #fafafa;
    color: #252525;
}



.auth-check-icon {
    width: 20px;
    height: 20px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.auth-check-icon::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 17px;
    width: 10px;
    height: 5px;
    border-bottom: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    transform: rotate(-45deg);
}

.auth-status .auth-primary-link {
    margin-top: 27px;
}

.auth-muted-link,
.auth-page .auth-form p.auth-muted-link {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 18px 0 0;
    color: #777;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
}

.auth-loader-wrap {
    display: flex;
    min-height: 50px;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    color: #676767;
    font-size: 14px;
}

.auth-loader-wrap .loader {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 2px solid #e4e4e4;
    border-top-color: #222;
}

.auth-secondary-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 22px;
    padding-top: 21px;
    border-top: 1px solid #e2e2e2;
}

.auth-secondary-actions .auth-muted-link {
    margin: 0;
}

.auth-back-link {
    margin-top: 15px;
    font-size: 13px;
}

.auth-followup,
.auth-account-actions {
    display: flex;
    flex-direction: column;
}

.auth-account-actions {
    gap: 12px;
    margin-top: 8px;
}

.auth-account-actions .auth-primary,
.auth-account-actions .auth-primary-link {
    margin: 0;
}

.suite-bootstrap-error {
    margin-top: 18px;
    padding: 14px;
    border-color: #e6cac7;
    border-radius: 7px;
    background: #fff8f7;
}

@media (max-width: 560px) {
    .auth-page {
        min-height: 100svh;
        align-items: flex-start;
        padding: clamp(48px, 12vh, 96px) 24px 40px;
        background: #fff;
    }

    .auth-page .auth-header h1,
    .auth-page .auth-form h1 {
        font-size: 29px;
    }

    .auth-page .auth-header {
        margin-bottom: 27px;
    }
}

@media (max-width: 360px) {
    .auth-page {
        padding-right: 18px;
        padding-left: 18px;
    }

    .auth-switch {
        gap: 6px;
    }
}