// main: style.scss
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: $color__background-button;
	border-radius: 0px;
	background: $color__background-button;
	box-shadow: none;
	color: $color__white;
	@include font-size(0.7);
	padding: 13px 20px;
	cursor: pointer;
	text-shadow: none;
	letter-spacing: 1px;
	width: 100%;
	text-transform: uppercase;
	&:hover {
		background: $color__black;
		border-color: $color__black;
	}

	&:active,
	&:focus {
		background: $color__black;
		border-color: $color__black;
		outline: none;
	}
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: $color__text-input;
	border: 1px solid $color__border-input;
	border-radius: 0px;
	background: #f2f2f0;
	font-size: 13px;
	margin: 0 0 10px;
	width: 100%;
	&:focus {
		color: $color__text-input-focus;
		outline: none;
		border: 1px solid #a9a9a9;
	}
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 12px;
}

textarea {
	padding-left: 12px;
	padding-top: 12px;
	width: 100%;
	resize: vertical;
}
