/* reset webkit search input browser style */
input {
	outline: none;
}
input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-family: inherit;
	font-size: 100%;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
	display: none; /* remove the search and cancel icon */
}

/* search input field */
input[type=search] {
	background: #ffffff url(/icon/search-icon.png) no-repeat 9px center;
	border: solid 1px #ccc;
	padding: 9px 10px 9px 32px;
	width: 70%;
	
	-webkit-border-radius: 10em;
	-moz-border-radius: 10em;
	border-radius: 5px;
	
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

@media (prefers-color-scheme: dark) {
input[type=search] {
	background: #ffffff url(/icon/search-icon.png) no-repeat 9px center;
	border: solid 1px #000;
	padding: 9px 10px 9px 32px;
	width: 70%;
	
	-webkit-border-radius: 10em;
	-moz-border-radius: 10em;
	border-radius: 5px;
	
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	background-color: #212121;
}
}
input[type=search]:focus {
	width: 70%;
	background-color: #fff;
	border-color: #6dcff6;
	
	-webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
	-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
	box-shadow: 0 0 5px rgba(109,207,246,.5);
}

/* placeholder */
input:-moz-placeholder {
	color: #999;
}
input::-webkit-input-placeholder {
	color: #999;
}
button {
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  text-shadow: 0px 1px 0px #2f6627;
  color: #ffffff;

  width: 15%;
  background: #44c767;

  border: solid #18ab29 1px;
  text-decoration: none;
}
@media (prefers-color-scheme: dark) {
button {
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  text-shadow: 0px 1px 0px #060606;
  color: #c2c2ca;
  width: 15%;
  background: #212121;

  border: solid #767676  1px;
  text-decoration: none;
}
}
button:hover {
  color: #ffffff;
  background: #5cbf2a;
  text-decoration: none;
}