* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    background: #f8f9fb;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.center-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; 
    padding: 20px;
}

.logo-box {
    text-align: center;
}

.logo-box img {
    display: inline-block;
    width: min(
        48vmin,
        320px
    );
    height: auto;
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
    border-radius: 4px;
}

.subtitle {
    margin-top: 14px;
    color: #6b7280;
    font-size: 14px;
    letter-spacing: 0.2px;
}

body.is-locked {
    overflow: hidden;
}
