body {
    margin: 0;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

@media only screen and (min-width: 768px) {
    .wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1
    }

    .container {
        background: #fff;
        box-shadow: 0 4px 80px rgba(0, 0, 0, .1);
        min-height: 500px;
        max-height: 95vh;
        max-width: 1200px;
        width: 95vw;
        display: flex;
        flex-direction: row
    }
}

.sidelogo {
    background: #111;
    display: flex;
    justify-content: center;
    align-items: start;
    flex: 1 1 35%;
    flex-direction: column;
    padding-left: min(8vw, 80px);
}

.sidelogo a {
    padding-right: 25px;
}

.sidelogo img {
    display: block;
    max-width: 191px;
    height: auto;
    margin-bottom: 10px;
}

.sidelogo h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
    padding: 0;
}

.sidelogo p {
    color: #f1f1f1;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    padding: 0
}

@media only screen and (max-width: 767px) {
    .sidelogo img {
        padding: 40px 0;
        height: 100px;
        width: auto
    }
}

.sidecontent {
    flex: 1 1 70%;
    padding: min(8vw, 80px);
    box-sizing: border-box;
    justify-content: center;
    display: flex;
    flex-direction: column
}

.sidecontent > :first-child {
    margin-top: 0
}

.sidecontent > :last-child {
    margin-bottom: 0
}

body, button, input, p {
    font-weight: 400;
    font-size: 16px;
    line-height: 175%
}

body, button, h1, input, p {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-style: normal;
    color: #000
}

h1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 58px;
    line-height: 1.2em
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 30px
    }
}

button {
    background: linear-gradient(124.38deg, #ee006b 8.42%, #b300be 80.91%);
    background-color: #f00069;
    color: #fff;
    padding: 16px 32px;
    text-transform: uppercase;
    border: 0;
    transition: all .2s ease-in-out;
    cursor: pointer;
    border-radius: 5px;
}

input[type=email], input[type=text] {
    display: block;
    width: 100%;
    background: #fff;
    padding: 8px 16px;
    border: 1px solid #8b8b8b;
    box-sizing: border-box;
    border-radius: 5px;
}

label {
    display: block
}

input[type=text], label, p {
    margin-bottom: 16px
}

label.checkbox {
    margin-bottom: 4px
}

button, h1 {
    margin-top: 24px;
    margin-bottom: 24px
}

button:hover {
    background: #f00069
}

button[disabled] {
    background: #f00069 !important
}

button[disabled] span {
    visibility: hidden
}

button[disabled]:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite
}

@keyframes button-loading-spinner {
    0% {
        transform: rotate(0turn)
    }
    to {
        transform: rotate(1turn)
    }
}

.field-required {
    color: red
}

a, h1.thanks {
    color: #f00069
}

a:hover {
    color: #111
}

small {
    max-width: 25em;
    display: block;
    line-height: 1.5em;
    color: #999;
    margin-top: 40px
}

@media only screen and (min-width: 768px) {
    .form-columns {
        display: flex;
        gap: 24px
    }

    .form-columns label {
        flex: 1;
        margin-bottom: 0;
        font-size: 14px;
    }
    form label {
        font-size: 14px;
    }
}