:root {
    --rmli-ink: #241b14;
    --rmli-muted: #817263;
    --rmli-line: #eadfce;
    --rmli-card: rgba(255, 252, 248, 0.94);
    --rmli-gold: #b47b38;
    --rmli-gold-dark: #8f5d26;
    --rmli-success: #1f6f43;
    --rmli-info: #2f6f9f;
    --rmli-warning: #b7791f;
    --rmli-error: #b94747;
    --rmli-font: "Montserrat", Arial, sans-serif;
    --rmli-shadow: 0 28px 78px rgba(48, 34, 21, 0.16);
}

.rmli-page,
.rmli-page * {
    box-sizing: border-box;
}

.rmli-page {
    min-height: calc(100vh - 1px);
    background: #fffaf3;
    color: var(--rmli-ink);
    font-family: var(--rmli-font);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    overflow: hidden;
}

.rmli-auth {
    position: relative;
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(500px, 0.9fr);
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.rmli-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(90deg, rgb(255 149 0 / 6%) 0%, rgb(255 155 15 / 8%) 44%, rgba(255, 250, 243, 0.72) 61%, rgba(255, 250, 243, 0.97) 100%), url(../images/auth_ring.png);
    background-size: cover;
    background-position: left center;
    transform: scale(1.01);
}

.rmli-auth::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 22% 46%, transparent 0 25%, rgba(255, 250, 243, .09) 45%, rgba(255, 250, 243, .55) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(221, 191, 151, .12));
    pointer-events: none;
}

.rmli-shell {
    position: relative;
    z-index: 2;
    grid-column: 2;
    justify-self: center;
    width: min(760px, calc(100% - 70px));
    padding: 42px 0;
}

.rmli-card {
    width: 100%;
    padding: 50px 58px 46px;
    border-radius: 24px;
    background: var(--rmli-card);
    border: 1px solid rgba(234, 223, 206, .96);
    box-shadow: var(--rmli-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.rmli-head {
    display: grid;
    grid-template-columns: 126px 1fr;
    gap: 22px;
    align-items: start;
    margin-bottom: 30px;
}

.rmli-logo {
    width: 122px;
    height: 122px;
    display: inline-flex;
    overflow: hidden;
    background: transparent;
    text-decoration: none;
}

.rmli-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.rmli-brand-stack {
    width: 126px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.rmli-domain-link {
    color: var(--rmli-gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none;
}

.rmli-domain-link:hover {
    color: var(--rmli-ink);
    text-decoration: underline;
}

.rmli-title {
    text-align: right;
    min-width: 0;
}

.rmli-title h1 {
    margin: 0;
    color: var(--rmli-ink);
    font-family: var(--rmli-font);
    font-size: clamp(42px, 4vw, 58px);
    line-height: .96;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.rmli-title p {
    margin: 10px 0 10px;
    color: var(--rmli-muted);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.rmli-title strong {
    display: block;
    margin-bottom: 13px;
    color: #6f563d;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.rmli-title>span {
    position: relative;
    display: inline-block;
    width: 230px;
    max-width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #dbc6ad 18%, #c79b65 50%, #dbc6ad 82%, transparent);
}

.rmli-title>span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    border: 1px solid #c79b65;
    background: #fffaf3;
    transform: translate(-50%, -50%) rotate(45deg);
}

.rmli-field {
    margin-bottom: 22px;
}

.rmli-field label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.rmli-control {
    position: relative;
    min-height: 68px;
    display: flex;
    align-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid var(--rmli-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
    transition: border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.rmli-control:focus-within {
    background: #fff;
    border-color: rgba(180, 123, 56, .55);
    box-shadow: 0 0 0 4px rgba(180, 123, 56, .09), inset 0 1px 0 rgba(255, 255, 255, .92);
}

.rmli-icon {
    width: 48px;
    height: 48px;
    margin-left: 9px;
    border-radius: 12px;
    color: #8f6f46;
    background: #f7efe6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
}

.rmli-icon svg,
.rmli-eye svg,
.rmli-toast-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rmli-control input {
    width: 100%;
    min-width: 0;
    height: 66px;
    padding: 0 58px 0 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--rmli-ink);
    font-family: var(--rmli-font);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.rmli-control input::placeholder {
    color: #a09082;
    font-weight: 700;
}

.rmli-eye {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #77736f;
    transform: translateY(-50%);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rmli-eye:hover {
    color: var(--rmli-gold-dark);
    background: #f8f0e7;
}

.rmli-eye .rmli-eye-close,
.rmli-eye.rmli-showing .rmli-eye-open {
    display: none;
}

.rmli-eye.rmli-showing .rmli-eye-close {
    display: block;
}

.rmli-error {
    display: block;
    min-height: 17px;
    margin-top: 7px;
    color: #9a7c68;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: 0.015em;
}

.rmli-field.rmli-field-ok .rmli-control {
    border-color: rgba(31, 111, 67, .36);
    box-shadow: 0 0 0 3px rgba(31, 111, 67, .06);
}

.rmli-field.rmli-field-ok .rmli-icon {
    color: var(--rmli-success);
    background: #f0fbf3;
}

.rmli-field.rmli-field-error .rmli-control {
    border-color: rgba(185, 71, 71, .52);
    box-shadow: 0 0 0 3px rgba(185, 71, 71, .07);
}

.rmli-field.rmli-field-error .rmli-icon {
    color: var(--rmli-error);
    background: #fff0ef;
}

.rmli-field.rmli-field-error .rmli-error {
    color: var(--rmli-error);
}


.rmli-live-check {
    display: block;
    min-height: 0;
    margin-top: 8px;
    padding: 0;
    color: #938578;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: 0.015em;
}

.rmli-live-check:empty {
    display: none;
}

.rmli-live-check.is-success {
    color: var(--rmli-success);
}

.rmli-live-check.is-info {
    color: var(--rmli-info);
}

.rmli-live-check.is-warning {
    color: var(--rmli-warning);
}

.rmli-live-check.is-error {
    color: var(--rmli-error);
}

.rmli-options {
    margin: 2px 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.rmli-check {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    color: #716253;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    user-select: none;
}

.rmli-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rmli-check>span {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 8px;
    border: 1.5px solid #d9c8b3;
    background: #fffaf4;
    position: relative;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.rmli-check>span::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform .2s ease;
}

.rmli-check input:checked+span {
    background: var(--rmli-gold);
    border-color: var(--rmli-gold);
    box-shadow: 0 0 0 4px rgba(180, 123, 56, .09);
}

.rmli-check input:checked+span::after {
    transform: rotate(45deg) scale(1);
}

.rmli-check b {
    font-weight: 800;
}

.rmli-forgot {
    color: var(--rmli-gold-dark);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
}

.rmli-forgot:hover {
    text-decoration: underline;
}

.rmli-submit {
    width: 100%;
    min-height: 66px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #c28b48 0%, #a56c2f 100%);
    box-shadow: 0 18px 38px rgba(169, 107, 47, .28);
    font-family: var(--rmli-font);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.03em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, opacity .22s ease;
}

.rmli-submit:hover {
    transform: translateY(-2px);
    filter: saturate(1.04);
    box-shadow: 0 22px 44px rgba(169, 107, 47, .34);
}

.rmli-submit:disabled {
    opacity: .72;
    cursor: not-allowed;
    transform: none;
}

.rmli-submit i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .48);
    border-top-color: #fff;
    display: none;
    animation: rmliSpin .75s linear infinite;
}

.rmli-submit.rmli-loading i {
    display: inline-block;
}

.rmli-divider {
    position: relative;
    margin: 30px 0 22px;
    text-align: center;
    color: #938578;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rmli-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e1d3c1 15%, #e1d3c1 85%, transparent);
}

.rmli-divider span {
    position: relative;
    padding: 0 26px;
    background: rgba(255, 252, 248, .96);
}

.rmli-signup {
    margin: 0;
    text-align: center;
    color: #827466;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.rmli-signup a {
    color: var(--rmli-gold-dark);
    font-weight: 900;
    text-decoration: none;
}

.rmli-signup a:hover {
    text-decoration: underline;
}

.rmli-toast-wrap {
    position: fixed;
    left: 38px;
    bottom: 34px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(420px, calc(100vw - 28px));
    pointer-events: none;
}

.rmli-toast {
    pointer-events: auto;
    position: relative;
    min-height: 82px;
    display: grid;
    grid-template-columns: 54px 1fr 28px;
    gap: 14px;
    align-items: center;
    padding: 14px 14px 14px 16px;
    border-radius: 14px;
    background: rgba(255, 253, 249, .96);
    border: 1px solid var(--rmli-line);
    box-shadow: 0 18px 42px rgba(47, 35, 24, .14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: rmliToastIn .26s ease both;
    overflow: hidden;
}

.rmli-toast::before {
    content: none;
    display: none;
}

.rmli-toast-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rmli-info);
    background: #eef7ff;
    border: 1px solid rgba(47, 111, 159, .18);
}

.rmli-toast-title {
    margin: 0 0 5px;
    color: var(--rmli-ink);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.05;
}

.rmli-toast-message {
    margin: 0;
    color: #746555;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.005em;
}

.rmli-toast-close {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #8c7b69;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.rmli-toast-success .rmli-toast-icon,
.rmli-toast-error .rmli-toast-icon,
.rmli-toast-warning .rmli-toast-icon,
.rmli-toast-info .rmli-toast-icon {
    color: #fff;
    background: linear-gradient(145deg, #9a6835, #6f4724);
    border-color: rgba(154, 104, 53, .28);
}

@keyframes rmliSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes rmliToastIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1100px) {
    .rmli-auth {
        grid-template-columns: 1fr;
    }

    .rmli-bg {
        background-image:
            linear-gradient(90deg, rgb(255 149 0 / 6%) 0%, rgb(255 155 15 / 8%) 44%, rgba(255, 250, 243, 0.72) 61%, rgba(255, 250, 243, 0.97) 100%), url(../images/auth_ring.png);
        background-position: center;
    }

    .rmli-shell {
        grid-column: 1;
        width: min(720px, calc(100% - 32px));
        padding: 54px 0;
    }
}

@media (max-width: 720px) {
    .rmli-auth {
        min-height: calc(100vh - 76px);
    }

    .rmli-shell {
        width: min(560px, calc(100% - 22px));
        padding: 38px 0;
    }

    .rmli-card {
        padding: 30px 20px 28px;
        border-radius: 20px;
    }

    .rmli-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rmli-brand-stack {
        width: 112px;
        align-items: flex-start;
    }

    .rmli-logo {
        width: 108px;
        height: 108px;
    }

    .rmli-title {
        text-align: left;
    }

    .rmli-title h1 {
        font-size: 40px;
    }

    .rmli-title p,
    .rmli-forgot,
    .rmli-check {
        font-size: 14px;
    }


    .rmli-live-check {
        display: block;
        min-height: 0;
        margin-top: 8px;
        padding: 0;
        color: #938578;
        font-size: 12px;
        line-height: 1.35;
        font-weight: 800;
        letter-spacing: 0.015em;
    }

    .rmli-live-check:empty {
        display: none;
    }

    .rmli-live-check.is-success {
        color: var(--rmli-success);
    }

    .rmli-live-check.is-info {
        color: var(--rmli-info);
    }

    .rmli-live-check.is-warning {
        color: var(--rmli-warning);
    }

    .rmli-live-check.is-error {
        color: var(--rmli-error);
    }

    .rmli-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .rmli-control {
        min-height: 58px;
    }

    .rmli-control input {
        height: 56px;
        font-size: 15px;
    }

    .rmli-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .rmli-submit {
        min-height: 58px;
        font-size: 16px;
    }

    .rmli-signup {
        font-size: 15px;
    }

    .rmli-toast-wrap {
        left: 12px;
        right: 12px;
        bottom: 16px;
        width: auto;
    }
}

@media (max-width: 430px) {
    .rmli-title h1 {
        font-size: 34px;
    }

    .rmli-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .rmli-control input {
        padding-left: 12px;
    }
}

.rmli-modal-open {
    overflow: hidden;
}

.rmli-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    font-family: var(--rmli-font);
}

.rmli-modal[aria-hidden="false"] {
    display: flex;
}

.rmli-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(31, 18, 9, 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rmli-modal-card {
    position: relative;
    z-index: 1;
    width: min(480px, calc(100vw - 28px));
    border-radius: 24px;
    padding: 30px 28px 26px;
    background: rgba(255, 252, 248, 0.98);
    border: 1px solid rgba(180, 123, 56, 0.28);
    box-shadow: 0 30px 90px rgba(30, 18, 9, 0.34);
    text-align: center;
    animation: rmliModalIn .22s ease both;
}

.rmli-modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #c28b48 0%, #8f5d26 100%);
    box-shadow: 0 16px 38px rgba(169, 107, 47, .26);
}

.rmli-modal-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rmli-modal-card h2 {
    margin: 0 0 10px;
    color: var(--rmli-ink);
    font-family: var(--rmli-font);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: .01em;
}

.rmli-modal-card p {
    margin: 0;
    color: #746555;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 750;
}

.rmli-modal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.rmli-modal-btn {
    min-height: 48px;
    border-radius: 14px;
    padding: 0 18px;
    border: 1px solid transparent;
    font: 900 13px/1 var(--rmli-font);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.rmli-modal-btn:hover {
    transform: translateY(-1px);
}

.rmli-modal-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #c28b48 0%, #a56c2f 100%);
    box-shadow: 0 14px 30px rgba(169, 107, 47, .24);
}

.rmli-modal-btn-light {
    color: #4f3d2f;
    background: #fff8ee;
    border-color: #ead8bf;
}

@keyframes rmliModalIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 520px) {
    .rmli-modal-card {
        padding: 24px 18px 20px;
        border-radius: 20px;
    }

    .rmli-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rmli-modal-btn {
        width: 100%;
    }
}


/* Login-required help modal */
.rmli-auth-required-modal .rmli-modal-card.rmli-auth-help-card {
    width: min(760px, calc(100vw - 34px));
    max-width: 760px;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fffaf4;
    border: 1px solid #ead7bd;
    box-shadow: 0 28px 78px rgba(48, 34, 21, .20)
}

.rmli-auth-help-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid #e2c89f;
    border-radius: 50%;
    background: #fffaf4;
    color: #2a170d;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 10px 24px rgba(80, 48, 18, .10)
}

.rmli-auth-help-close:hover {
    background: #f7ead7
}

.rmli-auth-help-head {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 34px 70px 28px 34px;
    border-bottom: 1px solid #ead7bd;
    background: linear-gradient(135deg, rgba(255, 250, 244, .98), rgba(250, 238, 221, .92))
}

.rmli-auth-help-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #9a6835, #6f4724);
    font-size: 28px
}

.rmli-auth-help-head small {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #f2debf;
    color: #9a6835;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase
}

.rmli-auth-help-head h2 {
    margin: 0;
    color: #24160f;
    font-family: var(--rmli-font);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.04em
}

.rmli-auth-help-head p {
    margin: 10px 0 0;
    color: #755f4b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45
}

.rmli-auth-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 20px
}

.rmli-auth-help-panel {
    border: 1px solid #ead7bd;
    border-radius: 14px;
    background: rgba(255, 255, 255, .58);
    padding: 18px
}

.rmli-auth-help-panel-wide {
    grid-column: 1/-1
}

.rmli-auth-help-panel>b {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: #24160f;
    font-size: 15px;
    font-weight: 900
}

.rmli-auth-help-panel>b i {
    color: #9a6835
}

.rmli-auth-help-panel ol {
    margin: 0;
    padding-left: 20px;
    color: #6d5a47;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55
}

.rmli-auth-help-panel li+li {
    margin-top: 7px
}

.rmli-auth-help-panel p {
    margin: 0;
    color: #6d5a47;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55
}

.rmli-auth-help-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #2a170d;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none
}

.rmli-auth-help-link:hover {
    filter: brightness(1.08)
}

@media(max-width:720px) {
    .rmli-auth-help-head {
        grid-template-columns: 1fr;
        padding: 30px 64px 22px 22px
    }

    .rmli-auth-help-icon {
        width: 58px;
        height: 58px;
        border-radius: 14px;
        font-size: 22px
    }

    .rmli-auth-help-grid {
        grid-template-columns: 1fr;
        padding: 14px
    }
}