* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0067b1;
    --primary-dark: #004f8a;
    --background: #f4f7fa;
    --text: #1f2937;
    --secondary: #667085;
    --white: #ffffff;
    --green: #16a34a;
}

body {
    min-height: 100vh;

    font-family: Calibri, "Segoe UI", Arial, sans-serif;

    background:
        radial-gradient(
            circle at top right,
            rgba(0, 103, 177, 0.12),
            transparent 35%
        ),
        var(--background);

    color: var(--text);

    display: flex;
    flex-direction: column;
}

.page {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;
}

.card {
    width: 100%;
    max-width: 650px;

    background: var(--white);

    padding: 55px 45px;

    border-radius: 18px;

    text-align: center;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);

    border-top: 5px solid var(--primary);
}

.icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 25px;

    background: rgba(0, 103, 177, 0.10);

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.icon svg {
    width: 38px;
    height: 38px;

    fill: var(--primary);
}

.company {
    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.3px;

    color: var(--primary);

    margin-bottom: 14px;
}

h1 {
    font-size: 36px;

    font-weight: 700;

    color: var(--text);

    margin-bottom: 7px;
}

h2 {
    font-size: 23px;

    font-weight: 500;

    color: var(--primary);

    margin-bottom: 24px;
}

.description {
    color: var(--secondary);

    font-size: 17px;

    line-height: 1.6;

    max-width: 520px;

    margin: auto;
}

.status {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 28px;

    padding: 9px 16px;

    background: #f0fdf4;

    border-radius: 50px;

    color: #166534;

    font-size: 14px;

    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;

    background: var(--green);

    border-radius: 50%;

    animation: pulse 2s infinite;
}

.divider {
    height: 1px;

    background: #e5e7eb;

    margin: 35px 0 25px;
}

.message {
    color: var(--secondary);

    font-size: 15px;

    line-height: 1.6;

    max-width: 520px;

    margin: auto;
}

.message strong {
    color: var(--text);
}

.secondary-message {
    margin-top: 14px;
}

footer {
    padding: 20px;

    text-align: center;

    color: #98a2b3;

    font-size: 13px;

    line-height: 1.6;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(22, 163, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

@media (max-width: 600px) {

    .page {
        padding: 25px 16px;
    }

    .card {
        padding: 40px 25px;
    }

    h1 {
        font-size: 29px;
    }

    h2 {
        font-size: 20px;
    }

    .description {
        font-size: 16px;
    }

    .message {
        font-size: 14px;
    }
}