body {
    background-color: #dadada;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

html, body, #root, .loading {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-circle {
    box-sizing: border-box;
    animation-name: spinner-spin;
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67);
    width: 20px;
    height: 20px;
    margin: 5px;
    border-radius: 50%;
    border-width: 1.5px;
    border-style: solid;
    border-color: rgb(0, 120, 212) rgb(199, 224, 244) rgb(199, 224, 244);
    border-image: initial;
}

@keyframes spinner-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error-page {
    padding: 2px 20px 20px 20px;
}

    .error-page .product-title {
        font-size: 30px;
    }

    .error-page .message {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .error-page .sadface {
        font-size: 70px;
    }

    .error-page .error-details {
        margin-top: 30px;
        font-size: smaller;
    }

    .error-page .error-details-heading {
        font-size: larger;
        margin-bottom: 10px;
    }

.authcallback-page {
    background-color: white;
    width: 100%;
    height: 100%;
}

    .authcallback-page > div {
        padding: 20px;
    }
