.error-page-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-content: start;
    max-width: 800px;
    gap: 40px;
    padding:40px;
}

.flex-row {
    flex-direction: row;
    flex-wrap: nowrap;
}

.statusCode {
    margin-top: 40px;
    font-weight: var(--font-weight-bold);
}

.errorMessage {
    text-align: center;
    font-size: 18px;
}

.error-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    width: 90%;
}

.error-btn {
    width: 100%;
    margin: 0;
    max-width: 100%;
    height: 2.8rem;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--link-text-color);
    background-color: var(--btn-blurry-bg-color);
    cursor: pointer;
}

.error-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
}
.error-message-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.error-title-logo {
    background-image: url(../img/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 60px;
}

.errorMessageWrapper {
    margin-bottom: 60px;
}

.errorPageActionBtn {
    padding: 10px;
}

.errorPageMessage {
    width: 100%;
    padding: 0;
}

.color-default{
    color: var(--login-color);
}

.error-page-btn{
    position: relative;
    height: 3rem;
    width: 100%;
    border-radius: var(--btn-border-radius);
    padding-left: .75rem;
    padding-right: .75rem;
    text-align: center;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    cursor: pointer;
    -webkit-appearance: button;
    background-image: none;
    cursor: pointer;
    text-transform: none;
    margin: 0;
    padding: 0;
    color: var(--btn-color);
    background-color: var(--color-primary);
    text-decoration: none;
}

.error-page-buttons{
    width: 100%;
    margin-top: 1rem;
}

.second-button {
    margin-top: 1rem;
}

.error-inline-button {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: bold;
}