body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

:root {
    --sirius-glow-rgb: 205, 168, 255;
    --sirius-glow-border-color: rgba(var(--sirius-glow-rgb), 0.98);
    --sirius-glow-border-strong-color: rgba(var(--sirius-glow-rgb), 1);
    --sirius-glow-ring-color: rgba(var(--sirius-glow-rgb), 0.66);
    --sirius-glow-soft-color: rgba(var(--sirius-glow-rgb), 0.46);
    --sirius-glow-input-shadow: 0 0 0 1px var(--sirius-glow-ring-color), 0 0 24px 2px var(--sirius-glow-soft-color);
    --sirius-glow-button-shadow: 0 0 0 1px rgba(var(--sirius-glow-rgb), 0.58), 0 0 22px 2px rgba(var(--sirius-glow-rgb), 0.40);
}

body.translucent-page {
    position: relative;
    overflow: hidden;
}

body.translucent-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: var(--bg-image, none);
    background-size: cover;
    background-position: center;
    filter: blur(18px) saturate(1.05);
    transform: scale(1.06);
    z-index: -2;
}

body.translucent-page::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.login-box {
    width: 360px;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.20) !important;
    border: 1px solid rgba(255, 255, 255, 0.50) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    text-align: center;
}

.login-box h1 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.login-box input {
    width: 100%;
    height: 26px;
    margin-bottom: 10px;
    padding: 0 36px 0 10px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    border-radius: 4px;
    outline: none;
    text-align: left;
    box-sizing: border-box;
}

.login-box input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.login-box input:focus {
    border-color: var(--sirius-glow-border-color);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: var(--sirius-glow-input-shadow);
}

.login-box button {
    width: 60%;
    height: 26px;
    margin-top: 8px;
    padding: 0 12px;
    background: #3779ff;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
    align-self: center;
    justify-content: center;
}

.login-box button:hover,
.login-box button:focus-visible {
    background: #1f5fea;
    border-color: var(--sirius-glow-border-color);
    box-shadow: var(--sirius-glow-button-shadow);
    outline: none;
}
