.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-card {
    padding: var(--padding-xl);
    border: 1px solid rgb(var(--border-color));
    border-radius: var(--radius-small);
    background-color: rgb(var(--card-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--margin-xl);
}

.error-card .error-title {
    color: rgb(var(--text-color));
}

.error-card .error-description {
    color: rgb(var(--text-color));
    text-align: center;
}

.error-card .contact-info {
    color: rgb(var(--text-color));
    text-align: center;
}

.error-card .contact-info a {
    color: rgb(var(--primary-color));
}