:root {
    --primary-font: 'RoobertPRO';
    
    --s-25: #FFFFFF;
    --s-50: #F5F5F5;
    --s-100: #D1D1D1;
    --s-200: #B8B8B8;
    --s-300: #9E9E9E;
    --s-500: #6B6B6B;
    --s-700: #383838;
    --s-900: #050505;
    
    --b-25: #FF4400;
}

html { height: 100%; }

body {
    height: 100%;
    background: var(--s-25);
    color: var(--s-900);
    font-size: 16px;
    font-family: var(--primary-font), sans-serif;
}

* { margin: 0; padding: 0; }

#email { position: absolute; top: 0; left: 0; z-index: -100; width: 0; height: 0; opacity: 0; }

a { text-decoration: none; }
strong { font-weight: 700; }
input, textarea, button { font-family: var(--primary-font), sans-serif; outline: none; }

.container { display: flex; flex-wrap: nowrap; align-items: stretch; min-height: 100%; }
.container .column { display: flex; flex-direction: column; align-items: center; box-sizing: border-box; width: 50%; padding: 80px; }
.container .column .logo { display: flex; }
.container .column .logo a { display: flex; }
.container .column .logo img { width: 258px; }

.container .column .content { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; width: 100%; }
.container .column .content h1 { margin-bottom: 10px; padding: 2px 24px 10px 24px; background: var(--b-25); color: var(--s-25); font-size: 60px; font-weight: 700; line-height: 72px; }
.container .column .content h2 { margin-bottom: 20px; font-size: 48px; font-weight: 500; line-height: 58px; }
.container .column .content p { font-size: 16px; line-height: 26px; }

.container .column .content .title { display: flex; flex-direction: column; width: 100%; margin-bottom: 40px; }
.container .column .content .title .subtitle { margin-bottom: 10px; font-size: 14px; font-weight: 700; line-height: 16px; text-transform: uppercase; }
.container .column .content .title h4 { font-size: 36px; font-weight: 600; line-height: 44px; letter-spacing: -0.72px; }

.container .column .content .form-container { display: flex; flex-wrap: wrap; gap: 20px; width: 100%; }
.container .column .content .form-container .item { flex-basis: 362px; flex-grow: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; }
.container .column .content .form-container .item.full { flex-basis: 100%; }
.container .column .content .form-container .item-heading { color: var(--s-500); font-size: 16px; line-height: 26px; }
.container .column .content .form-container .item-heading.required:after { content: " *"; color: var(--b-25); }

.container .column .footer { display: flex; flex-direction: column; align-items: center; width: 100%; }
.container .column .footer h3 { margin-bottom: 35px; font-size: 20px; font-weight: 400; line-height: 24px; }
.container .column .footer .platforms { display: flex; }
.container .column .footer .platforms ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 40px; }
.container .column .footer .platforms ul li { display: flex; }
.container .column .footer .platforms ul li a { display: flex; }
.container .column .footer .platforms ul li img { height: 30px; }

.container .column:nth-child(1) .content { align-items: center; max-width: 560px; padding: 40px 0; text-align: center; }
.container .column:nth-child(2) { background: var(--s-50); }

.button { transition: background 0.2s ease-in-out; align-self: flex-start; flex-shrink: 0; display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; padding: 11px 20px; background: var(--s-900); border: 0; color: var(--s-25); font-size: 16px; font-weight: 700; line-height: 26px; cursor: pointer; text-align: center; }
.button:hover { background: var(--s-700); }
.button .icon { display: flex; margin-left: 10px; }
.button .icon svg { transition: margin-left 0.2s ease-in-out; width: 16px; fill: var(--s-25); }
.button:hover .icon svg { margin-left: 3px; }

.input { box-sizing: border-box; width: 100%; height: 48px; padding: 0 16px; background: var(--s-25); border: 1px solid var(--s-100); font-size: 16px; line-height: 24px; }
.input:hover { border-bottom-color: var(--s-300); }
.input:focus { border-bottom-color: var(--b-25); }

.textarea { box-sizing: border-box; width: 100%; height: 120px; padding: 12px 16px; background: var(--s-25); border: 1px solid var(--s-100); font-size: 16px; line-height: 24px; resize: none; }
.textarea:hover { border-bottom-color: var(--s-300); }
.textarea:focus { border-bottom-color: var(--b-25); }

.checkbox-container { display: flex; flex-wrap: nowrap; width: 100%; padding: 10px 0; }
.checkbox-container input { display: none; }
.checkbox-container .checkbox { order: 1; flex-shrink: 0; display: flex; justify-content: center; align-items: center; box-sizing: border-box; width: 24px; height: 24px; background: var(--s-25); border: 1px solid var(--s-100); cursor: pointer; }
.checkbox-container .checkbox-label:hover + .checkbox,
.checkbox-container .checkbox:hover { border-color: var(--s-300); }
.checkbox-container .checkbox span { display: none; }
.checkbox-container .checkbox span svg { width: 12px; fill: var(--s-25); }
.checkbox-container input:checked + .checkbox-label + .checkbox { background: var(--s-900); border-color: var(--s-900); }
.checkbox-container input:checked + .checkbox-label + .checkbox span { display: flex; }
.checkbox-container .checkbox-label { order: 2; padding-left: 12px; color: var(--s-500); font-size: 16px; line-height: 26px; user-select: none; cursor: pointer; }
.checkbox-container .checkbox-label a { color: var(--s-900); }

.success { display: flex; flex-direction: column; width: 100%; }

::placeholder { color: var(--s-200); opacity: 1; }

@media (max-width: 1000px) {
    .container { flex-direction: column; }
    .container .column .logo img { width: 200px; }
    .container .column { width: 100%; padding: 40px; }
    .container .column:nth-child(2) { flex-grow: 1; }
    
    .container .column .content h1 { padding: 1px 18px 3px 18px; font-size: 40px; line-height: 54px; }
    .container .column .content h2 { font-size: 34px; line-height: 42px; }
    .container .column .content p { font-size: 14px; line-height: 22px; }
    .container .column .content .title { align-items: center; margin-bottom: 30px; text-align: center; }
    .container .column .content .title h4 { font-size: 28px; line-height: 36px; }
    .container .column .content .form-container { gap: 15px; }
    .container .column .content .form-container .item-heading { font-size: 14px; line-height: 24px; }
    
    .container .column .footer h3 { margin-bottom: 25px; font-size: 18px; }
    .container .column .footer .platforms ul li img { height: 24px; }
    
    .checkbox-container .checkbox-label { font-size: 14px; line-height: 24px; }
    
    .success { align-items: center; text-align: center; }
}

@media (max-width: 818px) {
    .button { width: 100%; }
}