input:-moz-placeholder {
	color: #d3d3d3;
}
input::placeholder {
	color: #e1e1e1;
}
#searchInput {
	border: 1px solid #ddd;
	padding: 0.5rem;
	width: 100%;
	margin-left:auto;
	margin-right: auto;
	background-color: #FD5F53;
	color: #fff;
	font-weight: bold;
}
#submitButtons input{
	padding: 15px 30px;
	font-size: 1.2em;
	cursor: pointer;
	font-weight: bold;
}
#submitButtons input[type=submit]:active {
	animation-name: buttonAnimation;
	animation-duration: 0.5s;
	color: #d4d4d6;
	background-color: #FF6459;
}

#formularz a:active {
	animation-name: buttonAnimation;
	animation-duration: 0.5s;
}
@media all and (min-width: 801px){
	.przycisk {
		background-color: #FD5F53;
		padding: 15px 30px;
		margin-top: 20px;
		color: #fff;
		text-decoration: none;
		text-align: center;
		border: none;
		border-radius: 3px;
		cursor: pointer;
		font-weight: bold;
	}
}
@media all and (max-width: 800px) {
	.przycisk {
		background-color: #FD5F53;
		margin-top: .5em;
		color: #fff;
		width: 100%;
		text-decoration: none;
		text-align: center;
		padding: 15px 30px;
		font-size: 1.2em;
		cursor: pointer;
		border: none;
		font-weight: bold;
	}
}
.przycisk:active {
	animation-name: buttonAnimation;
	animation-duration: 0.5s;
}
.textInput {
	padding: 15px 30px;
	margin-right: auto;
	margin-left: auto;
	background-color: #FD5F53;
	color: #FFFFFF;
	border: none;
	border-radius: 3px;
	font-weight: bold;
}

/* submit animation */

@keyframes buttonAnimation {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.8);
	}
	100% {
		transform: scale(1);
	}
}