/* Das Kontaktformular */
body {
text-align: center;
color: #000;
font-family:Arial, sans-serif;
}

form {
  background-color: #eee;/*#eee;*/
  width: 85%; /* Breite des Formulars */
  padding: 20px;
  border: 1px solid #8c8c8c;
}
label { /* Beschriftung auf eigener Zeile */
  display: block;
  cursor: pointer; /* Mauszeiger wird zur Hand */
}
input#ihrname, 
textarea {
  width: 90%;
}
input#absender,
textarea {
  width: 90%;
  border: 1px solid #8c8c8c;
  margin-bottom: 1em;
}
textarea {
  height: 7em;
}
input:focus,
textarea:focus {
  background-color: #d9d9d9;
}
  