.neemesi-form-field {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 5px;
}

.neemesi-form-field.field-50 {
    flex: 0 0 50%;
}

.neemesi-form-field.field-100 {
    flex: 0 0 100%;
}

.neemesi-form-field label {
    /* margin-bottom: 10px; */
    font-weight: 600;
    font-size: 16px;
}

.neemesi-form-field input, .neemesi-form-field select, .neemesi-form-field textarea, .neemesi-form-field button {
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 5px;
}

.neemesi-form-field select[multiple] {
    height: 200px;
}

.neemesi-form-field select[multiple] option[selected] {
    background-color: #e4f0f385;
}

.neemesi-file-input {
    display: flex;
    flex-wrap: nowrap;
}

.neemesi-file-input i {
    font-size: 24px;
    margin: 0 5px;
}

.neemesi-file-input span {
    text-overflow: ellipsis;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
}

.neemesi-form-field select option {
    background-color: #2e2e2e;
    color: #ffffff;
}

.field-help {
    margin: 5px;
    color: #b5b6b7;
    font-size: 14px;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 20px;
}