.error-page {
    overflow-y: auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;

    .error-container {
        width: 40%;
        display: flex;
        flex-direction: column;
        align-items: end;
        gap: 2rem;
        padding-inline: 30px;
        margin-top: -120px;

        .code-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .error-code {
            font-size: 120px;
            font-weight: 600;
        }

        .error-subtitle {
            font-size: 30px;
            font-weight: 600;
            margin-top: -5px;
        }

        .error-message {
            margin-top: -10px;
            font-size: 45px;
            text-align: right;
            max-width: 500px;
        }
    }

    .error-img {
        width: 60%;
        height: 100%;
    }
}

/*mobile*/
@media screen and (max-width: 1000px) {
    .error-page {
        flex-direction: column;
        gap: 1rem;

        .error-container {
            width: 100% !important;
            height: 50%;
            margin-top: 0;
            align-items: center;
            justify-content: center;
            padding-inline: 10px;

            .error-code {
                font-size: 80px;
            }

            .error-subtitle {
                font-size: 15px;
            }

            .error-message {
                font-size: 25px;
                text-align: center;
            }
        }

        .error-img {
            width: 100%;
            height: 50%;
        }
    }
}