* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    background: #111;
    color: #f5f5f5;
}

body {
    min-height: 100vh;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.card {
    width: 100%;
    max-width: 720px;
    padding: 48px;
    border: 1px solid #333;
    border-radius: 18px;
    background: #181818;
}

.brand {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
}

h1 {
    margin: 0 0 18px;
    font-size: 38px;
    line-height: 1.15;
}

p {
    color: #bdbdbd;
    line-height: 1.6;
}

.status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-weight: 600;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4caf50;
}

.small {
    margin-top: 28px;
    font-size: 13px;
}
