.input-form {
  background: transparent;
  width: auto;
  margin: 0 auto;
  position: relative;
}

.commission-text {
    background: transparent;
    color: light-dark(var(--light-bg), var(--dark-bg));
}

/* contact form */
#contact input[type="text"], #contact input[type="email"], #contact textarea, #contact button[type="submit"] { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }

#contact {
	background:light-dark(var(--light-color), var(--dark-color));
	padding: 25px;
	border: 2px solid light-dark(var(--light-color), var(--dark-color));
	border-radius: 12px;
	margin:50px 0;
	box-shadow: 0px 0px 10px black;
}

#contact h3 {
	display: block;
    color: light-dark(var(--light-bg), var(--dark-bg));
}

#contact h4 {
	margin:5px 0 15px;
	display:block;
	font-size:13px;
}

fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100px;
	padding: 0;
	width: 100%;
	background-color: transparent;
}

#contact input[type="text"], #contact input[type="email"], #contact textarea {
  box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	width:100%;
	border:1px solid light-dark(var(--light-color), var(--dark-color));
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #FFF;
}

#contact textarea {
	height:100px;
	max-width:100%;
  resize:none;
}

#contact button[type="submit"] {
  cursor: url(https://sweezy-cursors.com/wp-content/uploads/cursor/weirdcore-aesthetic-spilled-coffee-chanterelle-mushrooms/weirdcore-aesthetic-spilled-coffee-chanterelle-mushrooms-pointer-32x32.png), pointer;
	width:100%;
	border:none;
	background:light-dark(#2a5629, #2a247a);
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
}

#contact button[type="submit"]:hover {
  cursor: url(https://sweezy-cursors.com/wp-content/uploads/cursor/weirdcore-aesthetic-spilled-coffee-chanterelle-mushrooms/weirdcore-aesthetic-spilled-coffee-chanterelle-mushrooms-pointer-32x32.png), pointer;
	background:light-dark(#377035, #332c94);
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}
