/* Styleheet: Weiter und zurück Butten Blau färben  */

input[type=button] { 
  padding: .4em .8em; 
  background: #f25f70 linear-gradient(#f25f70, #f25f70); 
  border: thin solid #f25f70;
  border-radius: 0 .4em .4em; 
  box-shadow: 0 .2em .4em gray; 
  color: white;
  text-shadow: 0 -.05em .05em #333; 
  font-size: 90%; 
  line-height: 1.0;
  cursor: pointer;
  transition: background 0.3s ease;
}

input[type=button]:hover {
  background: #c94455 linear-gradient(#c94455, #c94455);
  border-color: #c94455;
}


input[type=submit] { 
  padding: .4em .8em; 
  background: #f25f70 linear-gradient(#f25f70, #f25f70); 
  border: thin solid #f25f70;
  border-radius: 0 .4em .4em; 
  box-shadow: 0 .2em .4em gray; 
  color: white;
  text-shadow: 0 -.05em .05em #333; 
  font-size: 90%; 
  line-height: 1.0;
  cursor: pointer;
  transition: background 0.3s ease;
}

input[type=submit]:hover {
  background: #c94455 linear-gradient(#c94455, #c94455);
  border-color: #c94455;
}