body {
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 500;
    color: #000;
    margin: 0;
    padding: 0;
    min-width: 400px;
    height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(45deg, var(--btn-toggle-bg-link), #fff 30% 70%, var(--btn-toggle-bg-link));
    z-index: -1;
}

h1 {
    font-size: 22px;
    font-weight: 800;
}

h2 {
    font-size: 20px;
    font-weight: 800;
}

h3 {
    font-size: 18px;
    font-weight: 600;
}

h4, h5, h6 {
    font-size: 16px;
}

.page__wrapper {
    padding: 20px;
    height: 100vh;
}

.page__inner {
    width: 100%;
    border: 2px solid var(--btn-toggle-bg-link);
    border-radius: 12px;
}

.page__sidebar {
    background: #EAFAF9;
    border-radius: 12px 0 0 12px;
}

.page__body {
    background: #fff;
    border-radius: 0 12px 12px 0;
    padding: 20px 10px 25px 20px;
}

.page__body-container {
    width: 100%;
}

@media (min-width: 576px) {
    .page__body-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .page__body-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .page__body-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .page__body-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .page__body-container {
        max-width: 100%;
    }
}

.page__body-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: space-between;
}

.logo {
    width: 100%;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
}

.logo a {
    color: #000;
}

.main {
    height: 100%;
    overflow-y: auto;
    padding: 0 15px 0 5px;
    scrollbar-color: rgba(53,211,201,.5) #fff;
    scrollbar-width: thin;
}

.main::-webkit-scrollbar {
    width: 10px;
}

.main::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
}

.main::-webkit-scrollbar-thumb {
    background: var(--btn-toggle-bg-link);
    border-radius: 10px;
}

.main::-webkit-scrollbar-thumb:hover {
    background: var(--btn-toggle-bg-link)
}

.window__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.window__inner {
    background: rgba(0, 145, 168, 0.1);
    padding: 25px 35px;
    margin: 25px;
    border: 1px solid #0091a8;
    border-radius: 9px;
}