@import '../../_coreStyles.scss';
.bolt-formitem-label {
    // @OLD-PLATFORM-OVERRIDE
    // legacy platform sets has label { color: $secondary-text; } which we don't want
    color: inherit;
    margin-bottom: $spacing-8;
    &--required {
        color: $status-error-text;
    }
    &--required-field-text {
        position:absolute;
        left:-10000px;
        top:auto;
        width:1px;
        height:1px;
        overflow:hidden;
    }
}

.bolt-formitem-message {
    color: $secondary-text;
    margin-top: $spacing-8;
}

.bolt-formitem-message-error {
    color: $error-text;
}

.bolt-formitem-message-warning {
    color: $status-warning-text;
}