* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;

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

    color: #1f2937;

    background:
        linear-gradient(
            135deg,
            #f4f6f8 0%,
            #e7ebef 100%
        );
}

.page {
    min-height: 100vh;

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

    padding: 24px;
}

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

    padding: 48px 42px;

    text-align: center;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);
}

.logo {
    width: 64px;
    height: 64px;

    margin: 0 auto 24px;

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

    border-radius: 50%;

    background: #f1f3f5;

    font-size: 26px;
    font-weight: 600;

    color: #374151;
}

h1 {
    margin: 0 0 10px;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.lead {
    margin: 0 0 24px;

    font-size: 18px;

    color: #6b7280;
}

.description {
    max-width: 430px;

    margin: 0 auto 28px;

    font-size: 15px;
    line-height: 1.7;

    color: #6b7280;
}

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

    padding: 10px 16px;

    border-radius: 999px;

    background: #f8fafc;

    font-size: 14px;

    color: #4b5563;
}

.status span {
    width: 8px;
    height: 8px;

    display: block;

    border-radius: 50%;

    background: #22c55e;
}

footer {
    margin-top: 34px;

    font-size: 13px;

    color: #9ca3af;
}

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

    h1 {
        font-size: 26px;
    }
}
