.go-mc-form {
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #00000015;
    padding: 2rem;
    font-size: 1rem;
}

.go-mc-form * {
    font-family: "Readex Pro", Helvetica, Arial, sans-serif !important;
}

.go-mc-form input {
    box-sizing: border-box;
    padding: 0.5em;
    margin: 0 0 2rem 0 !important;
    width: 100% !important;
}

.go-mc-form input[type=checkbox] {
    position: relative;
    margin: 0.15em 0 0 0 !important;
    height: 1.5rem !important;
    width: 1.5rem !important;

    appearance: none;
    border: 1px solid #00000015;
    border-radius: 4px;
    background-color: white;
}

.go-mc-form input[type=checkbox]:checked {
    background-color: #00000015;
}

.go-mc-form input[type=checkbox]:checked::after {
    content: '\f00c';
    font-family: "Font Awesome 6 Pro";
    font-size: 0.75em;
    position: absolute;
    color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.go-mc-form_row {
    display: flex;
    gap: 2rem;
}

.go-mc-consent {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.go-mc-form_fineprint p {
    font-size: 1.2rem;
    opacity: 50%;
    margin: 2rem 0 !important;
    line-height: 1.75rem;
}

.go-mc-form_actions {
    display: flex;
    justify-content: center;
    margin-top: 2em !important;
}

.go-mc-form_actions button {
    border: 1px solid #00000015;
    border-radius: 9999px;
    padding: 0.25em 2em;
    padding-left: 2em !important;
    padding-right: 2em !important;
    font-size: 0.875em;
}

.go-mc-form form:invalid button {
    background-color: #eee;
    color: #aaa;
    cursor: not-allowed;
}

.go-mc-form form:valid button:hover {
    background-color: #ac003a;
    color: white;
}

@media only screen and (max-width: 960px) {
    .go-mc-form_row {
        flex-direction: column;
        gap: 0;
        margin: 0 0 2rem 0 !important;
    }
}