﻿.error-logos {
    display: flex;
    flex-direction: row;
}

.error-img {
    display: flex;
    flex-direction: column;
}

.login-button {
    text-decoration: none;
    font-size: 3rem;
    font-weight: 500;
    font-family: 'Lilita One';
    padding: 0rem 2.5rem 0rem 2.5rem;
    border-radius: 0.7rem;
    background-color: #FFA114;
    color: white;
    margin: 3rem 0rem 0.25rem 0rem;
    border: none;
    float: right;
    text-align: center;
    width: 60%;
    box-shadow: 5px 5px 10px -5px rgba(0,0,0,0.80);
    cursor: pointer;
}

.error-left {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.error-right {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
}

.error-page {
    display: flex;
    flex-direction: row;
}

.error-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* TABLET */
@media only screen and (max-width: 960px) {

    .error-page {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .error-left {
        width: 100%
    }

    .error-right {
        width: 100%
    }




}