/* General */

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font: 14px/1.2 'Montserrat', uppercase, sans-serif;
    color: #505050;
    background: #F0F0F0;
    margin: 0;
    overflow-x: clip;
    letter-spacing: 0;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

a {
    color: inherit;
}

input,
textarea,
select,
button {
    color: inherit;
    font: inherit;
}

/* Page body */

.page-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 1524px;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: auto;

}

.page-body-content-wrapper {
    display: flex;
    flex-direction: row;
    margin: 30px 14vw;
    gap: 40px;
}

.page-body-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 30px 0;
    flex: auto;
}

.page-body-content-wrapper .page-body-content {
    margin: 0;
    gap: 30px;
}

.page-body-sidebar {
    display: flex;
    flex-direction: column;
}

.page-body-sidebar > div {
    background: #FFFFFF;
    border-top: 3px solid #35003D;
    box-shadow: -2px 8px 10px 0 #0000001F;
    backdrop-filter: blur(8px);
    padding: 10px 0;
    width: auto;
    z-index: 99;
}

.page-body-sidebar > div a {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

.page-body-content-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-body-content-section > div {
    background: #FFFFFF;
    border-top: 3px solid #35003D;
    box-shadow: -2px 8px 10px 0 #0000001F;
    backdrop-filter: blur(8px);
    padding: 40px;
    margin: 0 14vw;
    width: auto;
}

.page-body-content-wrapper .page-body-content-section > div {
    margin: 0;
}

.page-body-content h1 {
    font-size: 32px;
    font-weight: bold;
}

.page-body-content h2 {
    font-size: 28px;
    font-weight: normal;
}

.page-body-content h3 {
    font-size: 24px;
    font-weight: normal;
}

.page-body-content h4 {
    font-size: 22px;
    font-weight: normal;
}

.page-body-content h4 {
    font-size: 20px;
    font-weight: normal;
}

.page-body-content h4 {
    font-size: 18px;
    font-weight: normal;
}

/* Error pages */

.error-page-message {
    text-align: center;
    margin-bottom: 0;
}

.error-page-link {
    font-size: 20px;
    text-align: center;
}

.buttons-panel {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.transition-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #35003D;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    gap: 10px;
}

.transition-button:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #35003D;
}

.transition-button:after {
    content: '';
    height: 12px;
    width: 12px;
    background: url(/images/transition-d197a086d1cb8a9b7742a7f508656de7.svg) center center no-repeat;
}

/* Fonts */

@font-face {
    font-family: 'Days One';
    src: url(/fonts/DaysOne-Regular-5367e175a0ed43a954ee1e3d8096fd04.woff);
    font-weight: normal;
    font-style: normal;
}

/* Captcha */

.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-message {
    position: absolute;
    right: 0;
    top: 42px;
    width: max-content;
    font-size: 10px;
    opacity: 0.8;
}