.iduid-error-page {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1024px;
    height: 100%;
    margin: 0 calc(var(--iduid--spacer--md) + 2px);
    padding: 0;

    h1 {
        font-size: var(--iduid--FontSize--3xl);
    }

    p {
        font-size: var(--iduid--FontSize--md);
    }
}

.iduid-error-page-img {
    max-height: 500px;
    height: auto;
    justify-self: center;
}

.iduid-error-content-wrapper {
    display: flex;
    justify-content: center;
}

.iduid-error-content {
    display: flex;
    flex-direction: column;
    gap: var(--iduid--spacer--md);
    text-align: center;
    width: 100%;
}

/** View for screens larger than 48em (= 768px) **/
@media screen and (min-width: 48em) {
    .iduid-error-page {
        grid-template-columns: 1fr 1fr;
        margin: 0 auto;
        padding: 0 calc(var(--iduid--spacer--md) + 2px);

        h1 {
            font-size: var(--iduid--FontSize--xxl);
        }
    }

    .iduid-error-content {
        text-align: left;
        width: auto;
    }
}