body {
    font-family: 'Gill Sans', sans-serif;
    margin: 0;
}

.container.limiter.error-page {
    background: #48484C;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.error-wrapper.login-wrapper-exception {
    align-items: center;
    background: #C7C7C7;
    border-radius: 10px;
    display:flex;
    justify-content:center;
    margin: 20rem;
    padding: 35px;
    width: 50rem;
}

.text-center {
    text-align: center
}

.spinner {
    animation: spin 1s linear infinite;
    border: 4px solid #ddd;
    border-radius: 50%;
    border-top-color: #333;
    height: 32px;
    margin: 12px auto 12px;
    width: 32px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
