﻿* {
    box-sizing: border-box;
}

html, body, #app {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

body {
    color: var(--color-text);
    font-size: 13px;
    font-weight: 500;
}

.access-denied {
    margin: 0 auto;
    padding-top: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
}

    .access-denied h1 {
        font-weight: 500;
        margin: 24px 0;
    }

    .access-denied p {
        color: var(--color-text-inactive);
        margin: 0;
    }

        .access-denied p + p {
            margin-top: 12px;
        }

    .access-denied a {
        color: var(--color-text);
        font-weight: 500;
        cursor: pointer;
    }