/* ==========================================================
   MYCREW
   AUTHENTICATION / INVITATION / ERROR SCREENS

   Burgundy + Gold + Ivory visual system.
   ========================================================== */


/* ==========================================================
   AUTH PAGE
   ========================================================== */

.auth-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    background:
        radial-gradient(
            circle at top left,
            rgba(212, 175, 55, 0.16),
            transparent 24%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(136, 30, 45, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--burgundy-dark),
            var(--burgundy) 50%,
            var(--wine)
        );

    color: var(--white);
}


/* ==========================================================
   AUTH CONTAINER
   ========================================================== */

.auth-container {
    width: min(
        100%,
        520px
    );

    margin-inline: auto;
}


/* ==========================================================
   AUTH CARD
   ========================================================== */

.auth-card {
    position: relative;

    overflow: hidden;

    padding: 38px;

    border:
        1px solid
        rgba(212, 175, 55, 0.35);

    border-radius: var(--radius-xl);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 253, 248, 0.98)
        );

    box-shadow:
        0 24px 70px rgba(30, 4, 8, 0.30);
}


.auth-card::before {
    content: "";

    position: absolute;
    inset:
        0
        0
        auto
        0;

    height: 6px;

    background:
        linear-gradient(
            90deg,
            var(--burgundy),
            var(--gold),
            var(--wine)
        );
}


/* ==========================================================
   BRAND
   ========================================================== */

.auth-brand {
    margin-bottom: 30px;

    text-align: center;
}


.auth-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 10px;
}


.auth-logo {
    width: 64px;
    height: 64px;

    object-fit: contain;
}


.auth-brand h1 {
    margin: 0;

    color: var(--burgundy);

    font-size: 2.4rem;
}


.auth-brand p {
    margin: 8px 0 0;

    color: var(--gold-dark);

    font-size: 0.92rem;
    font-weight: 700;

    letter-spacing: 0.03em;
}


/* ==========================================================
   HEADING
   ========================================================== */

.auth-heading {
    margin-bottom: 26px;

    text-align: center;
}


.auth-heading h2 {
    margin-bottom: 8px;

    color: var(--burgundy);

    font-size: 2rem;
}


.auth-heading p {
    margin: 0;

    color: var(--text-secondary);
}


/* ==========================================================
   FORM
   ========================================================== */

.auth-form {
    margin-top: 12px;
}


.auth-card .form-group {
    margin-bottom: 18px;
}


.auth-card label {
    color: var(--charcoal);
}


.auth-card input,
.auth-card select,
.auth-card textarea {
    background: var(--white);

    border-color: #ded4c7;
}


.auth-card input:focus,
.auth-card select:focus,
.auth-card textarea:focus {
    background: var(--ivory);

    border-color: var(--gold);

    box-shadow:
        0 0 0 4px rgba(212, 175, 55, 0.12);
}


/* ==========================================================
   PASSWORD ROW / TOGGLE
   ========================================================== */

.password-wrapper {
    position: relative;
}


.password-wrapper input {
    padding-right: 48px;
}


.password-toggle {
    position: absolute;

    top: 50%;
    right: 10px;

    transform: translateY(-50%);

    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: transparent;

    color: var(--burgundy);

    font-size: 1rem;
}


.password-toggle:hover {
    background:
        rgba(212, 175, 55, 0.12);
}


/* ==========================================================
   AUTH SUBMIT
   ========================================================== */

.auth-submit {
    width: 100%;

    min-height: 48px;

    margin-top: 4px;

    font-size: 1rem;
}


/* ==========================================================
   AUTH LINKS
   ========================================================== */

.auth-links,
.auth-footer {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 22px;

    text-align: center;
}


.auth-footer {
    flex-direction: column;
}


.auth-footer .button {
    width: 100%;
}


.auth-link {
    color: var(--burgundy);

    font-weight: 700;
}


.auth-link:hover {
    color: var(--gold-dark);

    text-decoration: underline;
}


/* ==========================================================
   AUTH DIVIDER
   ========================================================== */

.auth-divider {
    position: relative;

    margin: 26px 0;

    text-align: center;
}


.auth-divider::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;
    right: 0;

    height: 1px;

    background: var(--border);
}


.auth-divider span {
    position: relative;
    z-index: 1;

    display: inline-block;

    padding: 0 12px;

    color: var(--text-muted);

    background: var(--surface-soft);

    font-size: 0.82rem;
}


/* ==========================================================
   PRIVACY AREA
   ========================================================== */

.auth-privacy {
    margin-top: 28px;

    padding-top: 22px;

    border-top:
        1px solid
        var(--border-light);
}


.auth-privacy strong {
    display: block;

    margin-bottom: 8px;

    color: var(--burgundy);
}


.auth-privacy p {
    margin-bottom: 10px;

    color: var(--text-secondary);

    font-size: 0.9rem;
}


.auth-privacy .privacy-rule {
    margin-top: 12px;

    color: var(--burgundy);

    font-weight: 800;
}


/* ==========================================================
   AUTH MESSAGE
   ========================================================== */

.auth-message {
    margin-top: 18px;

    padding: 12px 14px;

    border-radius: var(--radius-sm);

    color: #7e1d27;

    background: var(--red-error-light);

    border:
        1px solid
        #efc4c9;
}


/* ==========================================================
   INVITATION DETAILS
   ========================================================== */

.invitation-detail-card {
    margin-top: 20px;

    background:
        linear-gradient(
            180deg,
            #fffefb,
            #f9f1df
        );

    border:
        1px solid
        rgba(212, 175, 55, 0.34);

    box-shadow: none;
}


.invitation-detail-card h3 {
    margin-bottom: 0;

    color: var(--burgundy);

    font-size: 1.35rem;
}


/* ==========================================================
   INVITATION LOADING
   ========================================================== */

.invitation-loading {
    min-height: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 14px;

    color: var(--text-muted);

    text-align: center;
}


/* ==========================================================
   ERROR PAGE
   ========================================================== */

.error-code {
    margin-bottom: 12px;

    color: var(--gold-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 3.5rem;
    font-weight: 700;

    line-height: 1;
}


/* ==========================================================
   CHECKBOX / AGREEMENT
   ========================================================== */

.auth-checkbox-row {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin: 18px 0;
}


.auth-checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;

    min-height: auto;

    margin-top: 2px;

    accent-color: var(--burgundy);
}


.auth-checkbox-row label {
    margin: 0;

    color: var(--text-secondary);

    font-size: 0.88rem;
    font-weight: 500;

    line-height: 1.45;
}


/* ==========================================================
   SMALL BRAND ORNAMENT
   ========================================================== */

.auth-brand::after {
    content: "◆";

    display: block;

    margin-top: 14px;

    color: var(--gold);

    font-size: 0.8rem;

    letter-spacing: 0.5em;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 620px) {

    .auth-page {
        align-items: flex-start;

        padding:
            18px
            12px;
    }


    .auth-card {
        padding:
            30px
            22px;

        border-radius: var(--radius-lg);
    }


    .auth-brand h1 {
        font-size: 2rem;
    }


    .auth-heading h2 {
        font-size: 1.7rem;
    }


    .auth-logo {
        width: 54px;
        height: 54px;
    }
}
/* ==========================================================
   YELLOW-TOWER LABS PRIVATE NETWORK
   PUBLIC LOGIN / MEMBERSHIP LANDING PAGE
   ========================================================== */

.ytl-login-body {
    margin: 0;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(212, 175, 55, 0.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #7a1427 0%,
            #681020 48%,
            #4f0b18 100%
        );

    color: #2d2525;
}


.ytl-login-page {
    min-height: 100vh;
    width: 100%;
}


/* ==========================================================
   HEADER
   ========================================================== */

.ytl-login-header {
    width: 100%;

    padding:
        42px
        32px
        36px;

    color: #ffffff;

    border-bottom:
        1px solid
        rgba(212, 175, 55, 0.50);
}


.ytl-header-inner {
    width: min(100%, 1380px);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;
}


.ytl-logo-shield {
    width: 112px;
    height: 112px;

    flex: 0 0 112px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;

    color: #f4cf64;

    border:
        3px solid
        #d4af37;

    border-radius:
        18px
        18px
        42px
        42px;

    background:
        linear-gradient(
            180deg,
            rgba(91, 10, 28, 0.90),
            rgba(58, 5, 17, 0.95)
        );

    box-shadow:
        0 10px 30px
        rgba(28, 0, 8, 0.35);
}


.ytl-logo-shield::before {
    content: "";

    position: absolute;

    inset: 6px;

    border:
        1px solid
        rgba(244, 207, 100, 0.55);

    border-radius:
        13px
        13px
        34px
        34px;
}


.ytl-logo-letters {
    position: relative;
    z-index: 1;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 2rem;
    font-weight: 800;

    letter-spacing: 0.08em;

    line-height: 1;
}


.ytl-logo-tower {
    position: relative;
    z-index: 1;

    margin-top: 8px;

    font-size: 2rem;

    line-height: 1;
}


.ytl-header-brand {
    text-align: left;
}


.ytl-header-brand h1 {
    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.1rem,
            4vw,
            4rem
        );

    font-weight: 700;

    letter-spacing: 0.045em;

    line-height: 1;
}


.ytl-trademark {
    color: #d4af37;

    font-size: 0.45em;

    vertical-align: top;
}


.ytl-private-network-line {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 13px;

    color: #f4cf64;

    font-size: 1.05rem;
    font-weight: 800;

    letter-spacing: 0.24em;
}


.ytl-gold-line {
    width: 70px;
    height: 2px;

    background: #d4af37;
}


.ytl-header-brand > p {
    margin:
        14px
        0
        0;

    color: #f7e9d0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.15rem;
    font-style: italic;
}


/* ==========================================================
   THREE PRIMARY CARDS
   ========================================================== */

.ytl-login-grid {
    width: min(100%, 1380px);

    margin: 0 auto;

    padding:
        44px
        28px
        42px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;

    align-items: stretch;
}


.ytl-access-card {
    min-width: 0;

    padding:
        34px
        34px
        32px;

    border:
        1px solid
        rgba(212, 175, 55, 0.55);

    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            #fffdf7,
            #f8f0df
        );

    box-shadow:
        0 18px 42px
        rgba(38, 0, 10, 0.26);

    display: flex;
    flex-direction: column;
}


.ytl-new-member-card {
    border:
        2px solid
        #d4af37;

    background:
        linear-gradient(
            180deg,
            #fffaf0,
            #f6ead0
        );

    box-shadow:
        0 20px 48px
        rgba(38, 0, 10, 0.30),
        0 0 0 1px
        rgba(212, 175, 55, 0.14);
}


.ytl-card-eyebrow {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 11px;

    color: #8a1930;

    font-size: 0.88rem;
    font-weight: 900;

    letter-spacing: 0.13em;
}


.ytl-new-eyebrow {
    color: #7b1428;

    font-size: 1rem;
}


.ytl-card-icon {
    color: #b98c20;

    letter-spacing: -0.12em;
}


.ytl-access-card h2 {
    margin:
        0
        0
        12px;

    color: #731327;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 2.05rem;

    line-height: 1.05;
}


.ytl-access-card .ytl-new-member-heading {
    color: #681020;

    font-size: 2.55rem;

    line-height: 1.02;
}


.ytl-card-intro {
    margin:
        0
        0
        22px;

    color: #665c5b;

    font-size: 0.97rem;

    line-height: 1.55;
}


.ytl-new-member-intro {
    margin-bottom: 20px;

    font-size: 1rem;
}


/* ==========================================================
   LOGIN FORM
   ========================================================== */

.ytl-login-form {
    margin-top: 3px;
}


.ytl-form-group {
    margin-bottom: 18px;
}


.ytl-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #382d2d;

    font-size: 0.88rem;
    font-weight: 800;
}


.ytl-input-wrap {
    position: relative;
}


.ytl-input-symbol {
    position: absolute;

    top: 50%;
    left: 14px;

    transform:
        translateY(-50%);

    color: #9b8d82;

    pointer-events: none;
}


.ytl-input-wrap input {
    width: 100%;

    min-height: 48px;

    padding:
        10px
        48px
        10px
        40px;

    border:
        1px solid
        #d8ccbc;

    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: #342b2b;

    font: inherit;
}


.ytl-input-wrap input:focus {
    border-color: #c59a2c;

    box-shadow:
        0 0 0 3px
        rgba(212, 175, 55, 0.14);
}


.ytl-password-toggle {
    right: 9px;

    color: #7a1427;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.ytl-main-button {
    width: 100%;

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        12px
        18px;

    border: 0;

    border-radius: 6px;

    text-align: center;
    text-decoration: none;

    font-size: 0.88rem;
    font-weight: 900;

    letter-spacing: 0.06em;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        opacity 0.15s ease;
}


.ytl-main-button:hover {
    transform:
        translateY(-1px);
}


.ytl-burgundy-button {
    color: #ffffff;

    background:
        linear-gradient(
            180deg,
            #81172d,
            #671022
        );

    box-shadow:
        0 7px 15px
        rgba(91, 10, 28, 0.18);
}


.ytl-gold-button {
    color: #3d2d08;

    background:
        linear-gradient(
            180deg,
            #f1cf63,
            #d6a933
        );

    border:
        1px solid
        #c29628;

    box-shadow:
        0 7px 16px
        rgba(145, 102, 13, 0.20);
}


.ytl-button-icon {
    font-size: 1rem;
}


.ytl-disabled-link {
    opacity: 0.46;

    cursor: not-allowed;

    pointer-events: none;

    filter: grayscale(0.18);
}


/* ==========================================================
   EXISTING MEMBER PRIVACY AREA
   ========================================================== */

.ytl-secure-divider {
    display: flex;
    align-items: center;

    gap: 12px;

    margin:
        25px
        0
        17px;
}


.ytl-secure-divider span {
    height: 1px;

    flex: 1;

    background: #d8cbb9;
}


.ytl-secure-divider p {
    margin: 0;

    color: #9b6f22;

    font-size: 0.79rem;
    font-weight: 800;
}


.ytl-private-box {
    display: flex;
    align-items: center;

    gap: 14px;

    padding:
        15px
        16px;

    border:
        1px solid
        rgba(212, 175, 55, 0.42);

    border-radius: 7px;

    background: #fff9ec;
}


.ytl-private-icon {
    color: #8a1930;

    font-size: 1.5rem;
}


.ytl-private-copy strong {
    display: block;

    margin-bottom: 4px;

    color: #6d1426;

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}


.ytl-private-copy p {
    margin: 2px 0;

    color: #6d6461;

    font-size: 0.78rem;
}


/* ==========================================================
   PRICE
   ========================================================== */

.ytl-price-box {
    margin-bottom: 17px;

    padding:
        17px
        18px;

    border:
        1px solid
        rgba(212, 175, 55, 0.62);

    border-radius: 8px;

    background:
        linear-gradient(
            180deg,
            #fff8e7,
            #f7e9c9
        );

    text-align: center;
}


.ytl-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;

    gap: 7px;
}


.ytl-price {
    color: #651020;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 2.8rem;
    font-weight: 800;

    line-height: 1;
}


.ytl-price-period {
    color: #675b55;

    font-size: 0.92rem;
    font-weight: 700;
}


.ytl-price-box p {
    margin:
        8px
        0
        0;

    color: #766b64;

    font-size: 0.78rem;

    line-height: 1.4;
}


/* ==========================================================
   EULA AGREEMENT
   ========================================================== */

.ytl-agreement-box {
    margin-bottom: 14px;

    padding:
        12px
        13px;

    border:
        1px solid
        #dfcfad;

    border-radius: 7px;

    background: #fffdf8;
}


.ytl-agreement-label {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin: 0;

    color: #5e5551;

    font-size: 0.78rem;
    font-weight: 500;

    line-height: 1.45;

    cursor: pointer;
}


.ytl-agreement-label input[type="checkbox"] {
    width: 17px;
    height: 17px;

    min-height: auto;

    flex: 0 0 17px;

    margin-top: 2px;

    accent-color: #721426;
}


.ytl-agreement-label a {
    color: #721426;

    font-weight: 800;

    text-decoration: underline;
}


.ytl-agreement-label a:hover {
    color: #a47713;
}


/* ==========================================================
   NEW MEMBER BENEFITS
   ========================================================== */

.ytl-benefit-list {
    margin-top: 19px;

    padding-top: 14px;

    border-top:
        1px solid
        #ded1bd;
}


.ytl-benefit-row {
    display: flex;
    align-items: center;

    gap: 10px;

    margin:
        9px
        0;

    color: #5f5652;

    font-size: 0.82rem;
}


.ytl-benefit-icon {
    width: 22px;

    color: #b58a24;

    text-align: center;

    font-weight: 900;
}


/* ==========================================================
   LICENSE INFORMATION
   ========================================================== */

.ytl-license-info-box {
    display: flex;
    align-items: center;

    gap: 15px;

    margin:
        6px
        0
        17px;

    padding:
        18px;

    border:
        1px solid
        rgba(212, 175, 55, 0.58);

    border-radius: 8px;

    background:
        linear-gradient(
            180deg,
            #fff9e9,
            #f7ecd4
        );
}


.ytl-license-info-icon {
    color: #b48720;

    font-size: 2rem;
}


.ytl-license-info-box strong {
    display: block;

    margin-bottom: 4px;

    color: #681020;

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}


.ytl-license-info-box p {
    margin: 2px 0;

    color: #695f59;

    font-size: 0.84rem;
}


.ytl-license-explanation {
    margin-top: 18px;

    text-align: center;
}


.ytl-license-explanation p {
    margin: 5px 0;

    color: #756b66;

    font-size: 0.78rem;

    line-height: 1.45;
}


/* ==========================================================
   GETTING STARTED
   ========================================================== */

.ytl-getting-started {
    width: min(100%, 1380px);

    margin:
        0
        auto
        46px;

    padding:
        24px
        30px;

    display: grid;

    grid-template-columns:
        1.3fr
        repeat(4, 1fr);

    gap: 0;

    border:
        1px solid
        rgba(212, 175, 55, 0.60);

    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #f7edd9
        );

    box-shadow:
        0 17px 38px
        rgba(36, 0, 9, 0.22);
}


.ytl-getting-intro {
    display: flex;
    align-items: center;

    gap: 18px;

    padding-right: 28px;
}


.ytl-getting-icon {
    color: #b78a22;

    font-size: 2.2rem;
}


.ytl-getting-intro h2 {
    margin: 0;

    color: #691122;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.55rem;

    line-height: 1.05;
}


.ytl-getting-intro p {
    margin:
        7px
        0
        0;

    color: #776c66;

    font-size: 0.79rem;
}


.ytl-step-card {
    position: relative;

    min-width: 0;

    padding:
        4px
        22px;

    border-left:
        1px solid
        #ded0bc;

    text-align: center;
}


.ytl-step-number {
    position: absolute;

    top: -4px;
    left: 13px;

    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: #78172a;

    font-size: 0.75rem;
    font-weight: 900;
}


.ytl-step-icon {
    margin-bottom: 6px;

    color: #b58a24;

    font-size: 1.65rem;
}


.ytl-step-card strong {
    display: block;

    color: #661020;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 0.92rem;
}


.ytl-step-card p {
    margin:
        6px
        0
        0;

    color: #766c67;

    font-size: 0.73rem;

    line-height: 1.4;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.ytl-login-footer {
    width: 100%;

    min-height: 76px;

    padding:
        20px
        34px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 20px;

    border-top:
        1px solid
        rgba(212, 175, 55, 0.52);

    color: #f6e8d1;

    background:
        rgba(64, 6, 18, 0.50);

    font-size: 0.78rem;
}


.ytl-footer-tagline {
    display: flex;
    align-items: center;

    gap: 9px;
}


.ytl-footer-tagline strong {
    color: #f3d36d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}


.ytl-footer-copyright {
    text-align: center;
}


.ytl-footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 9px;
}


.ytl-footer-links a {
    color: #f5e6cc;

    text-decoration: none;
}


.ytl-footer-links a:hover {
    color: #f3d36d;

    text-decoration: underline;
}


/* ==========================================================
   AUTH MESSAGE INSIDE NEW LOGIN
   ========================================================== */

.ytl-login-page .auth-message {
    margin:
        0
        0
        16px;

    padding:
        11px
        13px;

    border-radius: 6px;

    font-size: 0.84rem;
}


.ytl-login-page .auth-message.hidden {
    display: none;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1050px) {

    .ytl-login-grid {
        grid-template-columns:
            1fr
            1fr;
    }


    .ytl-new-member-card {
        grid-column:
            span 1;
    }


    .ytl-license-card {
        grid-column:
            1 / -1;
    }


    .ytl-getting-started {
        grid-template-columns:
            1fr
            1fr;

        gap: 22px;
    }


    .ytl-step-card {
        border-left: 0;

        border-top:
            1px solid
            #ded0bc;

        padding-top: 20px;
    }


    .ytl-login-footer {
        grid-template-columns:
            1fr;

        text-align: center;
    }


    .ytl-footer-tagline,
    .ytl-footer-links {
        justify-content: center;
    }
}


@media (max-width: 720px) {

    .ytl-login-header {
        padding:
            30px
            18px;
    }


    .ytl-header-inner {
        flex-direction: column;

        gap: 18px;
    }


    .ytl-header-brand {
        text-align: center;
    }


    .ytl-private-network-line {
        justify-content: center;
    }


    .ytl-gold-line {
        width: 35px;
    }


    .ytl-login-grid {
        padding:
            28px
            14px;

        grid-template-columns:
            1fr;
    }


    .ytl-access-card,
    .ytl-new-member-card,
    .ytl-license-card {
        grid-column: auto;

        padding:
            28px
            22px;
    }


    .ytl-access-card .ytl-new-member-heading {
        font-size: 2.15rem;
    }


    .ytl-getting-started {
        margin-bottom: 28px;

        padding:
            24px
            20px;

        grid-template-columns:
            1fr;
    }


    .ytl-getting-intro {
        justify-content: center;

        padding-right: 0;

        text-align: center;
    }


    .ytl-step-card {
        padding:
            22px
            10px
            4px;
    }


    .ytl-step-number {
        left: 4px;
    }


    .ytl-footer-links {
        flex-wrap: wrap;
    }

}