.gated-content-block {
    .inputField {
        width: 100% !important;
        border: 0;
        border-bottom: 2px solid #ccc;
        border-radius: 0;
        padding: 10px 5px 10px 0;
        font-size: 16px;
        outline: 0;
        line-height: 1.2;
        transition: border-color .2s ease-in-out,
            background-color .2s ease-in-out;


        &:focus {
            outline: none;
            font-weight: 400;
            color: var(--text-color);
        }
    }

    select {
        width: 100% !important;
        border: 0;
        border-bottom: 2px solid #ccc;
        border-radius: 0;
        padding: 10px 5px 10px 0;
        font-size: 16px;
        outline: 0;
        line-height: 1.2;
        transition: border-color .2s ease-in-out,
            background-color .2s ease-in-out;
    }

    .gdpr-check {
        margin-right: 5px;
    }

    .gdpr-text {
        color: var(--brand-grey-dark);
        font-size: 13px;
        font-weight: 700;
        margin-left: 25px;
        margin-top: -18px;
        display: block;
    }

    .input-row {
        margin-bottom: 20px;

        .error {
            color: red;
            font-size: 13px;
            padding-top: 3px;
        }
    }

    .register-btn {
        text-align: center;
    }

    .input-row.promotions {
        display: none;
    }

    form.show-optin .input-row.promotions {
        display: block;
    }
}