/* Opt-in migrated family login; no selectors touch other screens or modules. */
#app > .landing-screen--auth .family-access-options {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: .35rem;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}
#app > .landing-screen--auth .family-access-options legend { margin-bottom: .25rem; }
#app > .landing-screen--auth .family-access-options label {
    display: flex;
    align-items: center;
    gap: .35rem;
    min-height: 44px;
    padding: .35rem .5rem;
    border: 1px solid #bed5eb;
    border-radius: 12px;
    background: #f7fbff;
    color: #0b355b;
    font-size: .8rem;
    line-height: 1.2;
    cursor: pointer;
}
#app > .landing-screen--auth .family-access-options label:has(input:checked) {
    border-color: #168f98;
    background: #eaf8f5;
    font-weight: 700;
}
#app > .landing-screen--auth .family-access-options label:focus-within {
    outline: 2px solid #146ca9;
    outline-offset: 2px;
}
#app > .landing-screen--auth .family-access-options input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin: 0;
    accent-color: #14718f;
}
#app > .landing-screen--auth .family-access-options p {
    grid-column: 1 / -1;
    margin: 0;
    color: #4d647c;
    font-size: .72rem;
    line-height: 1.3;
}
@media (max-height: 680px) {
    #app > .landing-screen--auth .auth-card:has(.family-access-options) { padding: .6rem; }
    #app > .landing-screen--auth .auth-card:has(.family-access-options) .auth-form { gap: .4rem; }
    #app > .landing-screen--auth .auth-card:has(.family-access-options) .auth-brand-panel {
        padding: .35rem;
        margin-bottom: .4rem;
    }
    #app > .landing-screen--auth .auth-card:has(.family-access-options) .auth-brand-panel__logo {
        height: 40px;
    }
}
