.global-error-root {
    height: 92vh;
}

.global-error-root-layout {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
}

.global-error-container {
    background-color: white;
    border-radius: 30px;
    padding: 15px 37px;
    height: 50%;
    width: 47%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.global-error-container img {
    align-self: center;
}

.global-error-text {
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
}

.global-error-home-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    gap: 6px;
    border-radius: 4px;
    padding: 6px 12px;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    user-select: none;
    overflow: hidden;
    /* border: 1px solid #188875; */
    background-color: var(--home__main_color);
    color: white;
    text-decoration: none;
}

.global-error-home-link:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: white;
}

.global-error__az-logo {
    height: 4vh;
}

.global-error__title {
    display: flex;
    align-items: center;
    font-size: 4vh;
    color: var(--home__text_color);
    font-weight: 200;
    gap: 0.7vw;
}