c-form-cell

Code
<div class="c-form-cell">
    <label for="c-form-cell__input-1" class="c-form-cell__label">Delectus in:</label>
    <div class="c-form-cell__error">
        <p class="c-notice c-notice--small c-notice--point-bottom c-notice--error" role="alert">Deserunt dicta tempore, sint nam.</p>
    </div>
    <input id="c-form-cell__input-1" type="text" class="c-form-cell__input e-input">
</div>

c-form-cell c-form-cell--disabled

Code
<div class="c-form-cell c-form-cell--disabled">
    <label for="c-form-cell__input-2" class="c-form-cell__label">Erectus out:</label>
    <input id="c-form-cell__input-2" type="text" class="c-form-cell__input e-input" disabled>
</div>

c-form-cell c-form-cell--inline

Code
<div class="u-normal-spacing">

    <div class="c-form-cell c-form-cell--inline">
        <label for="c-form-cell__input-3" class="c-form-cell__label">Tempore:</label>
        <input id="c-form-cell__input-3" type="text" class="c-form-cell__input e-input e-input--small">
    </div>

    <div class="o-inline-list o-inline-list--loose">
        <div class="c-form-cell c-form-cell--inline">
            <input class="e-input" name="c-form-cell__input-4" id="c-form-cell__input-4a" type="radio" value="soluta">
            <label class="c-form-cell__input e-input--faux e-input" aria-hidden="true" for="c-form-cell__input-4a"></label>
            <label class="c-form-cell__label c-form-cell__label--subtle" for="c-form-cell__input-4a">Soluta</label>
        </div>
        <div class="c-form-cell c-form-cell--inline">
            <input class="e-input" name="c-form-cell__input-4" id="c-form-cell__input-4b" type="radio" value="suscipit">
            <label class="c-form-cell__input e-input--faux e-input" aria-hidden="true" for="c-form-cell__input-4b"></label>
            <label class="c-form-cell__label c-form-cell__label--subtle" for="c-form-cell__input-4b">Suscipit</label>
        </div>
    </div>

    <div class="c-form-cell c-form-cell--inline">
        <input class="e-input" name="c-form-cell__input-5" id="c-form-cell__input-5" type="checkbox">
        <label class="c-form-cell__input e-input--faux e-input" aria-hidden="true" for="c-form-cell__input-5"></label>
        <label class="c-form-cell__label c-form-cell__label--subtle" for="c-form-cell__input-5">Explicabo facilis, ipsa corrupti iure laudantium blanditiis fuga aliquam officia vel eos minima, ducimus veniam, aliquid laboriosam in voluptates numquam.</label>
    </div>

</div>