
/* =========================================================
   ENUMERI LOGIN
   Matches current login.php markup
   ========================================================= */


/* =========================================================
   LOGIN
========================================================= */

.mr-login{

    max-width:520px;

    margin:60px auto;

}

/* ---------------------------------------------------------
   PAGE
   --------------------------------------------------------- */

.mr-login-page {
    min-height: 100vh;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 24px;

    background:
        linear-gradient(
            rgba(24, 22, 19, 0.18),
            rgba(17, 16, 14, 0.30)
        ),
        url('/uploads/images/enumeri-onyx-background.webp');

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    box-sizing: border-box;
}


/* =========================================================
   LOGIN ARCHITECTURAL WATERMARK
   LEFT EXACTLY AS PROVIDED
   ========================================================= */

.mr-login-page::after {
    content: "";

    position: absolute;

    right: -5vw;
    bottom: -20px;

    /*
     * Scale the architecture with the desktop viewport.
     * 800px minimum preserves the smaller-screen appearance.
     * 58vw allows it to grow on large monitors.
     * 1150px prevents it from becoming ridiculous.
     */
    width: clamp(800px, 58vw, 1150px);
    height: clamp(620px, 45vw, 890px);

    background-image: url('/uploads/images/enumeri-counting-house-old-building-500-x-300-px.webp');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;

    opacity: 0.10;

    filter: sepia(1) saturate(0.45);

    pointer-events: none;

    z-index: 0;
}

/* ---------------------------------------------------------
   SHELL
   DO NOT CHANGE CARD WIDTH
   --------------------------------------------------------- */

.mr-login-shell {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 450px;

    margin: 0 auto;
}


/* ---------------------------------------------------------
   BRAND
   Enlarged and brightened for dark onyx background
   --------------------------------------------------------- */

.mr-login-brand {
    margin: 0 0 22px;

    text-align: center;
}

.mr-login-logo {
    display: block;

    width: 300px;
    max-width: 88%;
    height: auto;

    margin: 0 auto 16px;

    filter:
        brightness(1.18)
        contrast(1.08)
        drop-shadow(0 2px 5px rgba(0, 0, 0, 0.32));
}

.mr-login-statement {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 12px;
    line-height: 1.6;

    font-weight: 600;

    letter-spacing: 0.13em;

    color: #e5d4b2;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.65);
}

.mr-login-attribution {
    margin-top: 6px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 10px;
    line-height: 1.4;

    font-style: italic;

    color: #c9ad78;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.65);
}


/* ---------------------------------------------------------
   BRAND ORNAMENT
   --------------------------------------------------------- */

.mr-login-ornament {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    width: 130px;

    margin: 13px auto 0;
}

.mr-login-ornament span {
    display: block;

    width: 45px;
    height: 1px;

    background: #d1a653;

    box-shadow:
        0 0 4px rgba(209, 166, 83, 0.22);
}

.mr-login-ornament i {
    display: block;

    width: 7px;
    height: 7px;

    background: #d1a653;

    transform: rotate(45deg);

    box-shadow:
        0 0 4px rgba(209, 166, 83, 0.22);
}


/* ---------------------------------------------------------
   LOGIN DOCUMENT
   SIZE LEFT UNCHANGED
   --------------------------------------------------------- */

.mr-login-card {
    position: relative;

    width: 100%;

    padding: 28px 34px 28px;

    background-color: #ffffff;
    background-image: url('/uploads/images/linen-background.webp');
    background-repeat: repeat;
    background-size: 300px auto;
    background-position: center;

    border: 1px solid #d7c4a3;
    border-radius: 0;

    box-shadow:
        0 9px 24px rgba(0, 0, 0, 0.18);

    box-sizing: border-box;
}


/* Gold document edge */

.mr-login-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background: linear-gradient(
        90deg,
        #8d6424,
        #d2aa57,
        #8d6424
    );
}


/* ---------------------------------------------------------
   CARD HEADER
   UNCHANGED
   --------------------------------------------------------- */

.mr-login-card-header {
    margin: 0 0 20px;

    text-align: center;
}

.mr-login-eyebrow {
    margin: 0 0 6px;

    font-size: 8px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 0.20em;

    color: #9a7131;
}

.mr-login-card-header h1 {
    margin: 0 0 7px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 26px;
    line-height: 1.15;
    font-weight: 600;

    color: #29241e;
}

.mr-login-card-header p {
    margin: 0;

    font-size: 10px;
    line-height: 1.5;

    color: #70675d;
}


/* ---------------------------------------------------------
   FORM
   UNCHANGED
   --------------------------------------------------------- */

.mr-login-form {
    width: 100%;

    margin: 0;
}

.mr-login-form .mr-field {
    width: 100%;

    margin: 0 0 16px;
    padding: 0;
}

.mr-login-form .mr-field label {
    display: block;

    margin: 0 0 6px;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #4b4135;
}


/* ---------------------------------------------------------
   INPUTS
   UNCHANGED
   --------------------------------------------------------- */

.mr-login-form .mr-input {
    display: block;

    width: 100%;
    height: 40px;

    margin: 0;
    padding: 0 12px;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid #cdbd9f;
    border-radius: 0;

    font-family: inherit;
    font-size: 12px;

    color: #2d2924;

    box-sizing: border-box;

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.mr-login-form .mr-input:focus {
    outline: none;

    background: #ffffff;

    border-color: #a77b35;

    box-shadow:
        0 0 0 2px rgba(167, 123, 53, 0.12);
}


/* ---------------------------------------------------------
   SIGN IN BUTTON
   UNCHANGED
   --------------------------------------------------------- */

.mr-login-button {
    display: block;

    width: 100%;
    min-height: 40px;

    margin: 3px 0 0;
    padding: 10px 18px;

    background:
        linear-gradient(
            180deg,
            #c79b4b 0%,
            #a97931 100%
        );

    border: 1px solid #8f6527;
    border-radius: 0;

    color: #fffdf8;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    text-align: center;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.15);

    cursor: pointer;
}

.mr-login-button:hover {
    background:
        linear-gradient(
            180deg,
            #d1a757 0%,
            #b58439 100%
        );

    border-color: #7e581f;
}


/* ---------------------------------------------------------
   ERROR MESSAGE
   UNCHANGED
   --------------------------------------------------------- */

.mr-login-error {
    margin: 0 0 18px;
    padding: 10px 12px;

    background: rgba(196, 63, 56, 0.06);

    border: 1px solid rgba(196, 63, 56, 0.35);

    color: #a53631;

    font-size: 10px;
    line-height: 1.4;

    box-sizing: border-box;
}


/* ---------------------------------------------------------
   CREATE ACCOUNT
   UNCHANGED — INSIDE CARD
   --------------------------------------------------------- */

.mr-login-register {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    margin: 20px 0 0;
    padding: 16px 0 0;

    border-top: 1px solid rgba(139, 111, 55, 0.20);

    font-size: 9px;
    line-height: 1.4;

    color: #70675d;
}

.mr-login-register a {
    color: #8a6227;

    font-weight: 700;

    text-decoration: none;
}

.mr-login-register a:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------------
   FOOTER
   Enlarged and brightened for onyx
   --------------------------------------------------------- */

.mr-login-footer {
    margin: 18px 0 0;

    text-align: center;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 9px;
    line-height: 1.4;

    font-weight: 600;

    letter-spacing: 0.22em;

    color: #c9ad78;

    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.70);
}

.mr-login-footer-rule {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin: 0 0 9px;
}

.mr-login-footer-rule span {
    display: block;

    width: 38px;
    height: 1px;

    background: rgba(209, 166, 83, 0.88);

    box-shadow:
        0 0 4px rgba(209, 166, 83, 0.20);
}

.mr-login-footer-rule i {
    display: block;

    width: 6px;
    height: 6px;

    background: #d1a653;

    transform: rotate(45deg);

    box-shadow:
        0 0 4px rgba(209, 166, 83, 0.20);
}


/* ---------------------------------------------------------
   LOGIN MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .mr-login-page {
        align-items: flex-start;

        padding: 24px 16px;
    }

    .mr-login-shell {
        max-width: 100%;
    }

    .mr-login-brand {
        margin-bottom: 18px;
    }

    .mr-login-logo {
        width: 250px;
        max-width: 82%;

        margin-bottom: 14px;
    }

    .mr-login-statement {
        font-size: 10px;
        line-height: 1.55;

        letter-spacing: 0.10em;
    }

    .mr-login-attribution {
        font-size: 9px;
    }

    .mr-login-ornament {
        width: 110px;

        margin-top: 11px;
    }

    .mr-login-ornament span {
        width: 38px;
    }

    /*
     * Card dimensions preserved from current mobile design.
     */

    .mr-login-card {
        padding: 26px 22px 25px;
    }

    .mr-login-card-header {
        margin-bottom: 20px;
    }

    .mr-login-card-header h1 {
        font-size: 24px;
    }

    .mr-login-form .mr-field {
        margin-bottom: 15px;
    }

    .mr-login-form .mr-input {
        height: 40px;
    }

    .mr-login-register {
        flex-direction: column;

        gap: 4px;

        margin-top: 18px;
        padding-top: 14px;

        text-align: center;
    }

    .mr-login-footer {
        margin-top: 16px;

        font-size: 8px;

        letter-spacing: 0.18em;
    }

}







/* =========================================================
   ENUMERI REGISTRATION
   ========================================================= */


/* ---------------------------------------------------------
   PAGE
   --------------------------------------------------------- */

.mr-register-page {
    min-height: 100vh;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 24px;

    background:
        linear-gradient(
            rgba(24, 22, 19, 0.18),
            rgba(17, 16, 14, 0.30)
        ),
        url('/uploads/images/enumeri-onyx-background.webp');

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    box-sizing: border-box;
}


/* =========================================================
   REGISTRATION ARCHITECTURAL WATERMARK
   ========================================================= */

.mr-register-page::after {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -20px;

    width: 800px;
    height: 620px;

    background-image:
        url('/uploads/images/enumeri-counting-house-old-building-500-x-300-px.webp');

    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;

    opacity: 0.10;

    filter: sepia(1) saturate(0.45);

    pointer-events: none;

    z-index: 0;
}


/* ---------------------------------------------------------
   SHELL
   --------------------------------------------------------- */

.mr-register-shell {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    transition:
        max-width 0.28s ease;
}

.mr-register-shell.is-tier-step {
    max-width: 900px;
}

/* ---------------------------------------------------------
   BRAND
   --------------------------------------------------------- */

.mr-register-brand {
    margin: 0 0 12px;

    text-align: center;
}

.mr-register-logo {
    display: block;

    width: 245px;
    max-width: 80%;
    height: auto;

    margin: 0 auto 8px;
}

.mr-register-statement {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;
    line-height: 1.45;

    letter-spacing: 0.12em;

    color: #d6ad5c;
}

.mr-register-attribution {
    margin-top: 3px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 11px;
    line-height: 1.3;

    color: #c69a4c;
}


/* ---------------------------------------------------------
   BRAND ORNAMENT
   --------------------------------------------------------- */

.mr-register-ornament {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    width: 95px;

    margin: 0 auto;
}

.mr-register-ornament span {
    display: block;

    width: 32px;
    height: 1px;

    background: #b88a3b;
}

.mr-register-ornament i {
    display: block;

    width: 5px;
    height: 5px;

    background: #b88a3b;

    transform: rotate(45deg);
}


/* ---------------------------------------------------------
   REGISTRATION DOCUMENT
   --------------------------------------------------------- */

.mr-register-card {
    position: relative;

    width: 100%;

    padding: 20px 24px 20px;

    background-color: #ffffff;
    background-image:
        url('/uploads/images/linen-background.webp');

    background-repeat: repeat;
    background-size: 300px auto;
    background-position: center;

    border: 1px solid #d7c4a3;
    border-radius: 0;

    box-shadow:
        0 9px 24px
        rgba(0, 0, 0, 0.18);

    box-sizing: border-box;
}


/* Gold document edge */

.mr-register-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #8d6424,
            #d2aa57,
            #8d6424
        );
}


/* ---------------------------------------------------------
   CARD HEADER
   --------------------------------------------------------- */

.mr-register-card-header {
    margin: 0 0 14px;

    text-align: center;
}

.mr-register-eyebrow {
    margin: 0 0 4px;

    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: 0.16em;

    color: #9a7131;
}

.mr-register-card-header h1 {
    margin: 1 1 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;
    line-height: 1.1;
    font-weight: 600;

    color: #29241e;
}

.mr-register-card-header p {
    margin: 0;

    font-size: 15px;
    line-height: 1.45;

    color: #62594f;
}


/* ---------------------------------------------------------
   FORM
   --------------------------------------------------------- */

.mr-register-form {
    width: 100%;

    margin: 0;
}

.mr-register-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    width: 100%;
}

.mr-register-field-full {
    grid-column: 1 / -1;
}

.mr-register-form .mr-field {
    width: 100%;

    margin: 0 0 10px;
    padding: 0;

    box-sizing: border-box;
}

.mr-register-form .mr-field label {
    display: block;

    margin: 0 0 4px;

    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #4b4135;
}


/* ---------------------------------------------------------
   INPUTS
   --------------------------------------------------------- */

.mr-register-form .mr-input {
    display: block;

    width: 100%;
    height: 34px;

    margin: 0;
    padding: 0 10px;

    background:
        rgba(255, 255, 255, 0.72);

    border: 1px solid #cdbd9f;
    border-radius: 0;

    font-family: inherit;
    font-size: 12px;

    color: #2d2924;

    box-sizing: border-box;

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.mr-register-form select.mr-input {
    cursor: pointer;
}

.mr-register-form .mr-input:focus {
    outline: none;

    background: #ffffff;

    border-color: #a77b35;

    box-shadow:
        0 0 0 2px
        rgba(167, 123, 53, 0.12);
}


/* ---------------------------------------------------------
   CREATE ACCOUNT / CONTINUE BUTTON
   --------------------------------------------------------- */

.mr-register-button {
    display: block;

    width: 100%;
    min-height: 40px;

    margin: 2px 0 0;
    padding: 10px 16px;

    background:
        linear-gradient(
            180deg,
            #c79b4b 0%,
            #a97931 100%
        );

    border: 1px solid #8f6527;
    border-radius: 0;

    color: #fffdf8;

    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.09em;
    text-transform: uppercase;

    text-align: center;

    box-shadow:
        0 2px 5px
        rgba(0, 0, 0, 0.15);

    cursor: pointer;
}

.mr-register-button:hover {
    background:
        linear-gradient(
            180deg,
            #d1a757 0%,
            #b58439 100%
        );

    border-color: #7e581f;
}


/* ---------------------------------------------------------
   ERROR MESSAGE
   --------------------------------------------------------- */

.mr-register-error {
    margin: 0 0 12px;
    padding: 8px 10px;

    background:
        rgba(196, 63, 56, 0.06);

    border:
        1px solid
        rgba(196, 63, 56, 0.35);

    color: #a53631;

    font-size: 11px;
    line-height: 1.35;

    box-sizing: border-box;
}


/* ---------------------------------------------------------
   EXISTING ACCOUNT / SIGN IN
   --------------------------------------------------------- */

.mr-register-login {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    margin: 13px 0 0;
    padding: 10px 0 0;

    border-top:
        1px solid
        rgba(139, 111, 55, 0.20);

    font-size: 14px;
    line-height: 1.4;

    color: #62594f;
}

.mr-register-login a {
    color: #7b541f;

    font-weight: 700;

    text-decoration: none;
}

.mr-register-login a:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------------
   FOOTER MARK
   --------------------------------------------------------- */

.mr-register-footer {
    margin: 12px 0 0;

    text-align: center;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;

    letter-spacing: 0.14em;

    color: #c69a4c;
}

.mr-register-footer-rule {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin: 0 0 6px;
}

.mr-register-footer-rule span {
    display: block;

    width: 24px;
    height: 1px;

    background:
        rgba(184, 138, 59, 0.75);
}

.mr-register-footer-rule i {
    display: block;

    width: 4px;
    height: 4px;

    background: #b88a3b;

    transform: rotate(45deg);
}


/* =========================================================
   REGISTRATION STEP PROGRESS
   ========================================================= */

.mr-register-progress {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    margin: 0 0 16px;
}

.mr-register-progress-step {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #9b9185;

    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    white-space: nowrap;
}

.mr-register-progress-step span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border: 1px solid #c9bda9;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 11px;

    color: #8b7c69;

    box-sizing: border-box;
}

.mr-register-progress-step.is-active {
    color: #7e5b24;
}

.mr-register-progress-step.is-active span {
    border-color: #b88a3b;

    color: #8d6424;

    background:
        rgba(184, 138, 59, 0.08);
}

.mr-register-progress-step.is-complete span {
    border-color: #b88a3b;

    background: #b88a3b;

    color: #ffffff;
}

.mr-register-progress-line {
    width: 40px;
    height: 1px;

    margin: 0 9px;

    background: #d4c9b8;
}


/* =========================================================
   REGISTRATION STEPS
   ========================================================= */

.mr-register-step {
    width: 100%;
}

.mr-register-step[hidden] {
    display: none;
}


/* =========================================================
   REGISTRATION TIER CARDS
   ========================================================= */

.mr-register-tier-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    width: 100%;

    margin: 4px 0 16px;
}

.mr-register-tier-card {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 0;
    min-height: 260px;

    padding: 20px 18px 16px;

    background:
        rgba(255, 255, 255, 0.42);

    border: 1px solid #cdbd9f;
    border-radius: 0;

    color: #332d26;

    font-family: inherit;
    text-align: center;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease;
}

.mr-register-tier-card:hover {
    border-color: #b88a3b;

    background:
        rgba(255, 255, 255, 0.70);

    transform:
        translateY(-2px);

    box-shadow:
        0 5px 12px
        rgba(0, 0, 0, 0.08);
}

.mr-register-tier-card.is-selected {
    border-color: #a97931;

    background:
        rgba(255, 252, 244, 0.92);

    box-shadow:
        inset 0 0 0 1px
        rgba(169, 121, 49, 0.22),
        0 5px 14px
        rgba(0, 0, 0, 0.10);
}

.mr-register-tier-card.is-selected::before {
    content: "";

    position: absolute;

    top: 8px;
    right: 8px;

    width: 7px;
    height: 7px;

    background: #b88a3b;

    transform:
        rotate(45deg);
}


/* =========================================================
   TIER CONTENT
   ========================================================= */

.mr-register-tier-number {
    display: block;

    margin-bottom: 8px;

    color: #9a7131;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.mr-register-tier-name {
    display: block;

    margin-bottom: 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;
    line-height: 1.15;
    font-weight: 600;

    color: #29241e;

    text-align: center;

    white-space: nowrap;
}


.mr-register-tier-hook {
    display: block;

    width: 100%;

    margin-bottom: 10px;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    color: #9a7131;

    text-align: center;
}


.mr-register-tier-description {
    display: block;

    min-height: 46px;

    font-size: 14px;
    line-height: 1.5;

    color: #70675d;

    text-align: left;
}

.mr-register-tier-divider {
    display: block;

    width: 36px;
    height: 1px;

    margin: 12px auto;

    background:
        rgba(184, 138, 59, 0.55);
}

.mr-register-tier-feature {
    position: relative;

    display: block;

    width: 100%;

    margin-bottom: 8px;
    padding-left: 17px;

    font-size: 13px;
    line-height: 1.45;

    color: #554b40;

    text-align: left;

    box-sizing: border-box;
}

.mr-register-tier-feature::before {
    content: "•";

    position: absolute;

    left: 1px;
    top: 0;

    color: #a97931;

    font-size: 14px;
    line-height: 1.45;
}

.mr-register-tier-select {
    display: block;

    width: 100%;

    margin-top: auto;
    padding-top: 12px;

    border-top:
        1px solid
        rgba(139, 111, 55, 0.15);

    color: #8a6227;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 0.09em;
    text-transform: uppercase;

    text-align: center;
}

.mr-register-tier-card.is-selected
.mr-register-tier-select {
    color: #704a17;
}

.mr-register-tier-card.is-selected
.mr-register-tier-select::before {
    content: "✓ ";

    font-weight: 700;
}


/* =========================================================
   TIER ERROR
   ========================================================= */

.mr-register-tier-error {
    margin: -4px 0 12px;

    color: #a53631;

    font-size: 11px;
    line-height: 1.4;

    text-align: center;
}


/* =========================================================
   TIER ACTIONS
   ========================================================= */

.mr-register-tier-actions {
    display: grid;

    grid-template-columns:
        110px 1fr;

    gap: 10px;

    width: 100%;
}

.mr-register-tier-actions
.mr-register-button {
    margin: 0;
}

.mr-register-back-button {
    min-height: 38px;

    padding: 9px 16px;

    background:
        rgba(255, 255, 255, 0.38);

    border: 1px solid #c5b69d;
    border-radius: 0;

    color: #665a4c;

    font-family: inherit;

    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.10em;
    text-transform: uppercase;

    cursor: pointer;
}

.mr-register-back-button:hover {
    background:
        rgba(255, 255, 255, 0.70);

    border-color: #a98d62;

    color: #453b30;
}



/* =========================================================
   REGISTRATION ENROLLMENT DESKTOP
   STEP 2 ONLY
   ========================================================= */

@media (min-width: 601px) {


    /* ---------------------------------------------------------
       STEP 2 DOCUMENT
       --------------------------------------------------------- */

    .mr-register-shell:not(.is-tier-step)
    .mr-register-card {
        padding: 28px 32px 30px;
    }


    .mr-register-shell:not(.is-tier-step)
    .mr-register-card-header {
        margin-bottom: 22px;
    }


    /* ---------------------------------------------------------
       SELECTED SERVICE
       --------------------------------------------------------- */

    .mr-register-selected-service {
        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;

        width: 100%;

        margin: 0 0 20px;
        padding: 12px 14px;

        background:
            rgba(184, 138, 59, 0.07);

        border:
            1px solid
            rgba(184, 138, 59, 0.28);

        box-sizing: border-box;
    }


    .mr-register-selected-service > div {
        display: flex;
        align-items: baseline;

        gap: 8px;
    }


    .mr-register-selected-label {
        font-size: 11px;
        line-height: 1.3;
        font-weight: 700;

        letter-spacing: 0.08em;
        text-transform: uppercase;

        color: #8a6a3b;
    }


    .mr-register-selected-service strong {
        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size: 15px;
        line-height: 1.3;

        color: #29241e;
    }


    .mr-register-change-service {
        padding: 5px 9px;

        background: transparent;

        border: 1px solid
            rgba(138, 98, 39, 0.42);

        color: #8a6227;

        font-family: inherit;

        font-size: 10px;
        line-height: 1.2;
        font-weight: 700;

        letter-spacing: 0.07em;
        text-transform: uppercase;

        cursor: pointer;
    }


    .mr-register-change-service:hover {
        background:
            rgba(184, 138, 59, 0.08);

        border-color: #8a6227;
    }


    /* ---------------------------------------------------------
       FORM SPACING
       --------------------------------------------------------- */

    .mr-register-shell:not(.is-tier-step)
    .mr-register-row {
        gap: 16px;

        margin-bottom: 6px;
    }


    .mr-register-shell:not(.is-tier-step)
    .mr-register-form .mr-field {
        margin-bottom: 14px;
    }


    .mr-register-shell:not(.is-tier-step)
    .mr-register-form .mr-field label {
        margin-bottom: 6px;
    }


    .mr-register-shell:not(.is-tier-step)
    .mr-register-form .mr-input {
        height: 40px;

        padding: 0 12px;

        font-size: 13px;
    }


    /* ---------------------------------------------------------
       PAYMENT SECTION
       --------------------------------------------------------- */

    .mr-register-payment-section {
        width: 100%;

        margin: 10px 0 0;
        padding: 20px 0 0;

        border-top:
            1px solid
            rgba(139, 111, 55, 0.22);

        box-sizing: border-box;
    }


    .mr-register-payment-heading {
        margin: 0 0 16px;
    }


    .mr-register-payment-heading
    .mr-register-eyebrow {
        margin-bottom: 7px;
    }


    .mr-register-payment-heading h2 {
        margin: 0 0 7px;

        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size: 21px;
        line-height: 1.2;
        font-weight: 600;

        color: #29241e;
    }


    .mr-register-payment-heading p {
        margin: 0;

        font-size: 13px;
        line-height: 1.5;

        color: #62594f;
    }


    /* ---------------------------------------------------------
       PAYMENT CONTAINER
       --------------------------------------------------------- */

    .mr-register-payment-container {
        width: 100%;

        margin: 0 0 18px;

        box-sizing: border-box;
    }


    .mr-register-payment-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;

        gap: 5px;

        width: 100%;
        min-height: 86px;

        padding: 18px;

        background:
            rgba(255, 255, 255, 0.40);

        border:
            1px dashed #c5b69d;

        box-sizing: border-box;
    }


    .mr-register-payment-placeholder strong {
        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size: 13px;
        line-height: 1.3;

        color: #493d30;
    }


    .mr-register-payment-placeholder span {
        font-size: 12px;
        line-height: 1.45;

        color: #70675d;
    }


    /* ---------------------------------------------------------
       STEP 2 ACTIONS
       --------------------------------------------------------- */

    .mr-register-shell:not(.is-tier-step)
    .mr-register-tier-actions {
        margin-top: 18px;

        grid-template-columns:
            110px 1fr;

        gap: 12px;
    }


    .mr-register-shell:not(.is-tier-step)
    .mr-register-back-button,
    .mr-register-shell:not(.is-tier-step)
    .mr-register-button {
        min-height: 40px;
    }

}


/* =========================================================
   REGISTRATION MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .mr-register-page {
        align-items: flex-start;

        padding: 24px 16px;
    }


    .mr-register-page::after {
        right: -180px;
        bottom: -20px;

        width: 620px;
        height: 480px;
    }


    .mr-register-shell {
        max-width: 100%;
    }


    .mr-register-shell.is-tier-step {
        max-width: 100%;
    }


    .mr-register-brand {
        margin-bottom: 18px;
    }


    .mr-register-logo {
        width: 215px;

        margin-bottom: 12px;
    }


    .mr-register-statement {
        font-size: 12px;
        line-height: 1.55;

        letter-spacing: 0.09em;
    }


    .mr-register-attribution {
        font-size: 11px;
    }


    .mr-register-card {
        padding: 26px 22px 25px;
    }


    .mr-register-card-header {
        margin-bottom: 20px;
    }


    .mr-register-eyebrow {
        font-size: 11px;
    }


    .mr-register-card-header h1 {
        font-size: 24px;
    }


    .mr-register-card-header p {
        font-size: 15px;
        line-height: 1.45;
    }


    .mr-register-row {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 15px;
    }


    .mr-register-field-full {
        grid-column: auto;
    }


    .mr-register-form .mr-field label {
        font-size: 11px;
    }


    .mr-register-form .mr-input {
        height: 40px;

        font-size: 13px;
    }


    .mr-register-button {
        min-height: 42px;

        font-size: 14px;
    }


    .mr-register-login {
        flex-direction: column;

        gap: 4px;

        margin-top: 18px;
        padding-top: 14px;

        font-size: 14px;

        text-align: center;
    }


    .mr-register-footer {
        margin-top: 14px;

        font-size: 11px;
    }


    /* -----------------------------------------------------
       MOBILE SERVICE LEVEL STEP
       ----------------------------------------------------- */

    .mr-register-progress-step {
        gap: 5px;

        font-size: 10px;

        letter-spacing: 0.06em;
    }


    .mr-register-progress-step span {
        width: 22px;
        height: 22px;

        font-size: 11px;
    }


    .mr-register-progress-line {
        width: 22px;

        margin: 0 6px;
    }


    .mr-register-tier-grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin: 4px 0 16px;
    }


    .mr-register-tier-card {
        min-height: 0;

        padding: 20px 18px 16px;
    }


    .mr-register-tier-number {
        font-size: 11px;
    }


    .mr-register-tier-name {
        font-size: 17px;

        white-space: normal;
    }


    .mr-register-tier-description {
        min-height: 0;

        font-size: 14px;
        line-height: 1.5;

        text-align: left;
    }


    .mr-register-tier-feature {
        margin-bottom: 8px;

        padding-left: 17px;

        font-size: 13px;
        line-height: 1.5;
    }


    .mr-register-tier-feature::before {
        left: 1px;

        font-size: 14px;
        line-height: 1.5;
    }


    .mr-register-tier-select {
        margin-top: 8px;

        font-size: 11px;
    }


    .mr-register-tier-error {
        font-size: 11px;
    }


    .mr-register-tier-actions {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .mr-register-back-button {
        min-height: 40px;

        font-size: 12px;
    }
    
    /* ---------------------------------------------------------
   STEP 2 MOBILE VISUAL TREATMENT
   --------------------------------------------------------- */


/* SELECTED SERVICE */

.mr-register-selected-service {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    width: 100%;

    margin: 0 0 16px;
    padding: 10px 12px;

    background:
        rgba(184, 138, 59, 0.07);

    border:
        1px solid
        rgba(184, 138, 59, 0.28);

    box-sizing: border-box;
}


.mr-register-selected-service > div {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 5px 7px;
}


.mr-register-selected-label {
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #8a6a3b;
}


.mr-register-selected-service strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;
    line-height: 1.3;

    color: #29241e;
}


.mr-register-change-service {
    flex: 0 0 auto;

    padding: 5px 8px;

    background: transparent;

    border:
        1px solid
        rgba(138, 98, 39, 0.42);

    color: #8a6227;

    font-family: inherit;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    cursor: pointer;
}


/* FORM SPACING */

.mr-register-shell:not(.is-tier-step)
.mr-register-form .mr-field {
    margin-bottom: 12px;
}


.mr-register-shell:not(.is-tier-step)
.mr-register-form .mr-field label {
    margin-bottom: 5px;
}


/* PAYMENT SECTION */

.mr-register-payment-section {
    width: 100%;

    margin: 8px 0 0;
    padding: 17px 0 0;

    border-top:
        1px solid
        rgba(139, 111, 55, 0.22);

    box-sizing: border-box;
}


.mr-register-payment-heading {
    margin: 0 0 14px;
}


.mr-register-payment-heading
.mr-register-eyebrow {
    margin-bottom: 6px;
}


.mr-register-payment-heading h2 {
    margin: 0 0 6px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;

    color: #29241e;
}


.mr-register-payment-heading p {
    margin: 0;

    font-size: 12px;
    line-height: 1.5;

    color: #62594f;
}


/* PAYMENT CONTAINER */

.mr-register-payment-container {
    width: 100%;

    margin: 0 0 16px;

    box-sizing: border-box;
}


.mr-register-payment-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 4px;

    width: 100%;
    min-height: 76px;

    padding: 14px 12px;

    background:
        rgba(255, 255, 255, 0.40);

    border:
        1px dashed #c5b69d;

    box-sizing: border-box;

    text-align: center;
}


.mr-register-payment-placeholder strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;
    line-height: 1.3;

    color: #493d30;
}


.mr-register-payment-placeholder span {
    font-size: 11px;
    line-height: 1.45;

    color: #70675d;
}


/* STEP 2 ACTION SPACING */

.mr-register-shell:not(.is-tier-step)
.mr-register-tier-actions {
    margin-top: 16px;
}

}