+
diff --git a/app/code/IpSupply/SyncOrder/view/adminhtml/web/css/config.css b/app/code/IpSupply/SyncOrder/view/adminhtml/web/css/config.css
index e69de29b..acb1feac 100755
--- a/app/code/IpSupply/SyncOrder/view/adminhtml/web/css/config.css
+++ b/app/code/IpSupply/SyncOrder/view/adminhtml/web/css/config.css
@@ -0,0 +1,47 @@
+.ipsupply {
+  box-sizing: border-box;
+  font-size: 16px;
+}
+
+.ipsupply button {
+  background: #eb5202;
+  color: #fff;
+  border: none;
+  outline: 0;
+}
+
+.ipsupply form {
+  box-sizing: border-box;
+  padding: 20px;
+  border: 1.5px solid #aca;
+  max-width: 600px;
+}
+
+.ipsupply form .form-group {
+  margin-bottom: 10px;
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+}
+
+.ipsupply form .form-group label {
+  font-weight: bold;
+  text-transform: uppercase;
+  margin-right: 5px;
+  min-width: 70px;
+}
+
+.ipsupply form .form-group label::after {
+  content: ":";
+}
+
+.ipsupply form .form-group input {
+  outline: 0;
+  border: 1px solid #aca;
+  padding: 3px 5px;
+  width: 100%;
+}
+
+.ipsupply form .form-group [type=submit] {
+  width: 100%;
+}