/* Grundstil des Labels und des Eingabefelds */
body .field-wrap {
    position: relative;
    margin-bottom: 30px;
}

body .nf-field-label {
    position: absolute;
    top: 10px;
    left: 22px;
    pointer-events: none;
    z-index: 9;
    line-height: 1;
}
body .file_upload-wrap .nf-field-label,
body .listradio-wrap .nf-field-label {
    position: relative;
    top: auto;
    left: auto;
    pointer-events: inherit;
}
body .nf-field-label,
body .nf-field-label label {
    transition: all 0.2s ease-out;
}

body .nf-field-label label {
    color: #5b5b5b;
    font-size: 16px;
    font-weight: normal;
}

body .nf-field-label label .ninja-forms-req-symbol {
    color: inherit;
}

body .nf-field-element input {
    padding: 15px;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* Stil für das Label im aktiven Zustand */
body .field-wrap.has-value .nf-field-label {
    top: -3px;
}
body .field-wrap.has-value .nf-field-label label {
    font-size: 9px;
    color: #333;
    font-weight: normal;
}
body .field-wrap.has-value .ninja-forms-field:not([type="button"]),
body .field-wrap.has-value .ninja-forms-field:not([type="submit"]) {
    padding-top: 9px;
    padding-bottom: 3px;
}
body .file_upload-wrap.has-value .nf-field-label label,
body .file_upload-wrap .nf-field-label label {
    font-size: 16px;
}

/* Stil für das Eingabefeld im fokussierten Zustand */
body .nf-field-element input:focus {
    border-color: purple;
    outline: none;
}
