.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 72px);
    gap: 30px;
}

.error-page p.lead {
    color: var(--gray-444);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 155.556% */
    letter-spacing: -0.36px;
    margin: 0;
}

.error-page p.sub {
    color: var(--gray-999);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.28px;
    margin: 0;
}

.error-page .btn-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.error-page i {
    width: 71px;
    height: 78px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 30px;
}

.error-page.code-401 i {
    background-image: url("../img/icon/ic_shape_1.svg");
}