*{
    padding: 0;
    margin: 0;
    font-family: 'Lato';
}
html {
    height: 100%;
    width: 100%;
}
#error {
    width: 100%;
    height: 100%;
}
.background_image_auth {
    width: 100%;
    height: 100%;
    background-image: url(../img/bg.png);
    background-size: 100% auto;
}
.error-wrapper{
    max-width: 70%;
    margin: auto;
    background-image: url("../img/window.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    height: auto;
    align-items: center;
}
.error-title{
    font-size: 24px;
    font-weight: bold;
    padding-top: 45px;
    color: #58b4c0;
    text-align: center;
    width: 100%;
}
.error_text {
    font-size: 170px;
    font-weight: bold;
    color: #fff;    
    line-height: 170px;
}
.error-main-content p {
    color: #fff;
}
.error_button {
    margin-top: 20px;
}
.error_button button {
    background-color: #00b5c2;
    border: none;
    border-radius: 20px;
    padding: 10px;
    cursor: pointer;
}
.error_button button a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}
.logo_maximus_error {
	width: 100%;
    position: absolute;
	right: 0;
}
.logo_maximus_error img {
    width: 10%;
    margin-top: 2em;
    margin-left: 4em;
}
.error-main-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 600px;
    justify-content: center;
}

@media (max-width: 780px) {
    .error-title {
        padding-left: 70px;
        box-sizing: border-box;
    }
    .error-wrapper {
        max-width: 100%;
    }
    .error-main-content {
        height: 540px;
    }
    .logo_maximus_error img {
        margin-left: 1em;
    }
}

@media (max-width: 468px) {
    .error_text {
        font-size: 70px;
        line-height: 70px;
    }
    .error-main-content {
        height: 270px;
    }    
    .logo_maximus_error {
        position: relative;
        text-align: center;
    }
    .logo_maximus_error img {
        width: 30%;
    }
    .error-title {
        padding-left: 0;
        font-size: 18px;
    }
    .error_button {
        margin-top: 5px;
    }
}