/*
Theme Name: GEMS
Author: Inoue
Description: 商品登録管理システム
Version: 1.0
*/
html {
	height: 100%;
}
body {
	height: 100%;
	margin: 0px;
	background: #445760;
	color: lightgrey;
}
input, textarea, select {
	background: #445760;
	color: lightgrey;
	border: 3px solid #fedc5e;
	border-radius: 10px;
}
input:focus, textarea:focus, select:focus {
	outline: 0px;
}
input[type="button"] {
	background: #fedc5e;
	color: #445760;
	font-size: 16px;
	font-weight: bold;
    margin-right: 12px;
	border: 0px;
	border-radius: 4px;
	padding: 2px 6px 1px 6px;
}
/* 自動補完時のCSS */
input:-webkit-autofill {
	transition: background-color 5000s ease-in-out 0s;
	-webkit-text-fill-color: lightgrey;
	caret-color: lightgrey;
}
::placeholder {
	color: lightgrey;
}
table, td, th {
	border: 2px solid #fedc5e;
	border-collapse: collapse;
}
table input, table textarea {
	border: 0px;
}
a {
	color: #78a7ff;
	text-decoration: none;
}
