/*******************************************************************************
* *
* TextField *
* *
******************************************************************************/
.text-field {
-fx-skin: "com.sun.javafx.scene.control.skin.TextFieldSkin";
-fx-background-color: -fx-shadow-highlight-color, -fx-text-box-border, -fx-control-inner-background;
-fx-background-insets: 0, 1, 2;
-fx-background-radius: 3, 2, 2;
-fx-padding: 3 5 3 5;
-fx-text-fill: -fx-text-inner-color;
-fx-prompt-text-fill: derive(-fx-control-inner-background,-30%);
-fx-cursor: text;
}
.text-field:focused {
-fx-background-color: -fx-focus-color, -fx-text-box-border, -fx-control-inner-background;
-fx-background-insets: -0.4, 1, 2;
-fx-background-radius: 3.4, 2, 2;
-fx-prompt-text-fill: transparent;
}
.text-field:disabled {
-fx-opacity: -fx-disabled-opacity;
}