/* Fonts */
@font-face {
    font-display: swap;
    font-family: MessinaModern;
    font-style: normal;
    font-weight: 400;
    src: url(/static/MessinaModern-Regular.woff2) format("woff2"), url(/static/MessinaModern-Regular.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: MessinaSans;
    font-style: normal;
    font-weight: 400;
    src: url(/static/MessinaSans-Book.woff2) format("woff2"), url(/static/MessinaSans-Book.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: MessinaSans;
    font-style: italic;
    font-weight: 400;
    src: url(/static/MessinaSans-BookItalic.woff2) format("woff2"), url(/static/MessinaSans-BookItalic.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: MessinaSans;
    font-style: normal;
    font-weight: 900;
    src: url(/static/MessinaSans-Black.woff2) format("woff2"), url(/static/MessinaSans-Black.woff) format("woff")
}

/* General */
body {
    background: black;
    background-image: url(/static/chroma-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

* {
    color: #fff;
    font-family: MessinaSans, -apple-system, BlinkMacSystemFont, Helvetica Neue, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.33em;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-font-variant-ligatures: common-ligatures;
    font-variant-ligatures: common-ligatures;
}

a,
p,
span {
    color: #fff;
    font-family: MessinaSans, -apple-system, BlinkMacSystemFont, Helvetica Neue, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.33em;
}

.alert-danger a {
    color: var(--bs-danger-text-emphasis);
}

.font-large {
    font-size: 24px;
}

.copy-contain {
    max-width: 670px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-family: MessinaModern, Georgia, Times, Times New Roman, serif;
}

h1 {
    font-size: 52px;
    margin-bottom: 40px;
}

h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 2.778vw;
}

.container {
    max-width: 84.722vw;
    padding: 6.944vw 0;
}

.wrapper {
    width: 100%;
    max-width: 800px;
}

button.btn {
    align-items: center;
    display: inline-flex;
    color: black;
    background-color: white;
    font-size: 16px;
    border-radius: 0;
    border: none;
    padding: 15px 55px;
    transition: all .25s cubic-bezier(.215, .61, .355, 1);
    position: relative;
    text-decoration: none;
    margin-top: 1em;
    margin-bottom: 3em;
}

button.btn:hover {
    background-color: #73F5D3;
    color: black;
    padding-right: 85px;
}

button.btn:active {
    color: #000 !important;
    background-color: #fff !important;
}

button.btn::after {
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='8' viewBox='0 0 24 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.3536 4.35355C23.5488 4.15829 23.5488 3.84171 23.3536 3.64645L20.1716 0.464466C19.9763 0.269204 19.6597 0.269204 19.4645 0.464466C19.2692 0.659728 19.2692 0.976311 19.4645 1.17157L22.2929 4L19.4645 6.82843C19.2692 7.02369 19.2692 7.34027 19.4645 7.53553C19.6597 7.7308 19.9763 7.7308 20.1716 7.53553L23.3536 4.35355ZM0 4.5H23V3.5H0V4.5Z' fill='black'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 8px;
    opacity: 0;
    transition: all .25s cubic-bezier(.215, .61, .355, 1);
}

button.btn:hover::after {
    opacity: 1;
}

button.btn:disabled {
    background-color: #fff;
    color: #000;
}

input[type="text"],
input[type="text"]:focus,
input[type="email"],
input[type="email"]:focus {
    background: transparent;
    border: none;
    border-bottom: 1px solid #B3B3B3;
    border-radius: 0;
    box-shadow: none;
    caret-color: #fff;
    color: #fff;
}

.form-field:focus-within input[type="text"],
.form-field:focus-within input[type="email"] {
    border-bottom: 1px solid #fff !important;
}

label {
    color: #B3B3B3;
}

.form-field:focus-within label {
    color: #fff !important;
}

/* Header */
.navbar {
    padding: 45px 55px;
}

.navbar a {
    color: #fff;
}

/* Page */
.h1-container {
    max-width: 650px;
}

.chroma-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    margin: 11.2px 15px 11.2px 0;
}

#preamble {
    margin-bottom: 6.944vw;
}

/* Form */
#contactInfoDiv label {
    margin-top: 12px;
}

#contactInfoDiv p {
    font-size: 18px;
    margin-bottom: 6vw;
}

#legalDiv {
    margin-bottom: 8vw;
}

#agreement {
    height: 27.778vw;
    min-height: 600px;
    background: #fff;
    border: 1px solid #B3B3B3;
    border-radius: 8px;
    padding: 20px 15px;
    overflow-y: scroll;
}

#agreement * {
    color: #000;
}

#agreement ol li {
    margin-bottom: 2em;
}

#agreement ol li ol {
    margin-top: 2em;
}

.form-check {
    margin-top: 40px;
}

.form-check input[type="checkbox"] {
    background-color: transparent;
    border: 1px solid #fff;
}

.form-check label.form-check-label {
    color: #fff;
    margin-bottom: 40px;
    font-size: 18px;
}

.form-check p {
    max-width: 500px;
}

div#rc-anchor-container {
    background-color: #333 !important;
    color: #fff !important;
}

.g-recaptcha {
    margin-top: 40px;
    overflow: hidden;
}

button#submitButton {
    margin-top: 75px;
}

/* Success Card */
.access-token-title {
    margin-top: 2em;
}

#user_token {
    margin-bottom: 2em;
}

#download_link {
    display: block;
    margin-bottom: 2em;
}

.questions-title {
    margin-top: 2em;
}

pre {
    background: #000 !important;
    border: 1px solid #b3b3b3;
    border-radius: 8px;
}

pre * {
    text-shadow: 0 1px #000 !important;
    color: #fff !important;
}

pre code {
    color: #fff !important;
    text-wrap: wrap !important;
}

code {
    color: #fff !important;
}

code.body-code {
    background: #000;
    padding: 0 2px;
    border: 1px #aaa solid;
    border-radius: 4px;
}

pre .token.function,
pre .token.property,
pre .token.operator {
    background: unset;
}

footer strong {
    font-size: calc(.98077rem + 1.20879vw);
}

footer p {
    margin-bottom: 0;
}

footer svg {
    fill: #fff;
    width: 20vw;
    min-width: 290px;
}

.copyright,
.copyright * {
    font-size: 14px;
}

/* No Script */
.noscript {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.778vw;
}

.noscript-modal {
    border: 1px solid #ccc;
    background-color: #000;
    padding: 2.778vw;
}

/* Mobile */
@media (max-width: 900px) {
    .navbar {
        width: 100%;
        max-width: 84.722vw;
        padding-left: unset;
        padding-right: unset;
        margin: auto;
    }

    .container-fluid {
        padding: 0;
        row-gap: 40px;
    }

    #contactInfoDiv .row {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 38px;
    }

    .chroma-logo {
        width: 330px;
        margin-right: unset;
        float: unset;
    }
}

@media (max-width: 400px) {
    .form-check a {
        word-break: break-all;
    }

    footer svg {
        width: 290px;
        min-width: unset;
        max-width: 100%;
    }

}