:root {
    --tlt-purple: #512683;
    --purple: #512683;
    --tlt-light-purple: #7d55c7;
    --light-purple: #7d55c7;
    --mauve: #C9B8E9;
    --light-mauve: #DCDDF2;
    --tlt-green: #268a6c;
    --tlt-light-green: #4db78e;  
    --green: #268a6c;
    --light-green: #4db78e; 
    --ink:#0D0D0D;
}

html {
    overflow-x: hidden;
    height:unset;
}

body {
    font-family: sofia-pro, sans-serif;
    color: var(--ink);
    background:#FFFFFF;
    height:unset;
}

section.forbidden a.logo-home-link {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    text-decoration: none;
    width: 100%;
    max-width: 440px;
    box-sizing: border-box;
    align-items: flex-end;
    margin:2rem auto;
    z-index:2;
}

section.forbidden a svg {
    display: block;
    width: 100%;
}

.brand-circles {
    position:fixed;
    z-index:0;
}

.brand-bg-bottom-left {
    bottom: 0;
    left: 0;
}

.brand-circles.brand-bg-bottom-left {
    left: -20vw;
    bottom: -20vw;
}

.brand-circles svg {
    display:block;
    width: 80vw;
}

section.forbidden .inner {
    width: 90%;
    max-width: 700px;
    box-shadow: 0px 0px 40px -20px #34B78F;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem 4rem;
    border: 1px solid #34b78f26;
    position: relative;
    z-index:2;
}

section.forbidden h1 {
    font-size: 1.5rem;
    text-align: center;
    font-weight:600;
    margin:2rem 0 1rem 0;
    color:var(--purple);
}

section.forbidden .inner .scenario p {
    font-size: 1rem;
    margin: 2rem 0;
} 

section.forbidden .link-button {
    text-align: center;
    width: fit-content;
    margin: 2rem auto;
    display: block;
}

.help-section {
    border:2px solid var(--light-mauve);
    padding:2rem;
    border-radius:12px;
    margin: 4rem 0 1rem 0;
}

.help-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color:var(--purple);
}

section.forbidden .inner .scenario a.link-button {
    background: var(--purple);
    color: #FFFFFF;
    text-decoration: none;
    transition:.5s;
}

section.forbidden .inner .scenario a.link-button:hover {
    background: var(--tlt-light-green);
    color: #FFFFFF;
}