* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background: #f6f7f9;
    color: #202124;
}

.card {
    width: 100%;
    max-width: 520px;

    padding: 42px 36px;

    background: #fff;

    border: 1px solid #e5e7eb;
    border-radius: 18px;

    text-align: center;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.06);
}

.icon {
    width: 54px;
    height: 54px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #f0f2f5;

    font-size: 25px;
}

h1 {
    margin: 0 0 14px;

    font-size: 27px;
    font-weight: 650;

    letter-spacing: -0.03em;
}

p {
    margin: 0;

    color: #6b7280;

    font-size: 15px;
    line-height: 1.65;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 26px;
    padding: 7px 12px;

    border-radius: 999px;

    background: #f3f4f6;

    color: #6b7280;

    font-size: 12px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #6b7280;
}

.small {
    margin-top: 34px;

    color: #a0a4aa;

    font-size: 10px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .card {
        padding: 32px 24px;
    }

    h1 {
        font-size: 24px;
    }
}
