body.rs-public-body,
body.rs-auth-body,
body.rs-app-body,
body.rs-instalasi-body {
    margin: 0;
    min-height: 100vh;
    color: var(--rs-text);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: var(--rs-bg);
    background-image:
        linear-gradient(rgba(255,255,255,0.42), rgba(255,255,255,0.42)),
        var(--rs-bg-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

html[data-rs-theme="gelap"] body.rs-public-body,
html[data-rs-theme="gelap"] body.rs-auth-body,
html[data-rs-theme="gelap"] body.rs-app-body,
html[data-rs-theme="gelap"] body.rs-instalasi-body {
    background-color: #050505;
    background-image:
        radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.055), transparent 28%),
        linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
        var(--rs-bg-image);
    background-blend-mode: soft-light, normal, normal;
}

body.rs-instalasi-body {
    display: flex;
    flex-direction: column;
}

body.rs-instalasi-body .rs-instalasi-main {
    flex: 1 0 auto;
}

a { color: inherit; }

code {
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--rs-accent-strong);
    font-size: 0.9em;
}

.rs-public-main,
.rs-auth-main,
.rs-instalasi-main {
    padding: 1.5rem 0 2rem;
}

.rs-global-topbar,
.rs-global-footer,
.rs-app-sidebar,
.rs-app-topbar,
.rs-app-footer {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.rs-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.rs-brand__mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--rs-accent-strong);
    color: #111111;
    font-weight: 700;
    box-shadow: var(--rs-shadow-sm);
}

html:not([data-rs-theme="gelap"]) .rs-brand__mark {
    color: #ffffff;
}

.rs-brand small,
.rs-global-footer,
.rs-app-user small,
.rs-app-nav__label,
.rs-app-footer {
    color: var(--rs-text-muted);
}
