@charset "utf-8";
/* CSS Document */

/* Das Kontaktformular */
form {
  background-color: #0B6138;
  width: 600px; /* Breite des Formulars */
  padding: 40px;
  border: 1px solid #8c8c8c;
}
label { /* Beschriftung auf eigener Zeile */
  display: block;
  cursor: pointer; /* Mauszeiger wird zur Hand */
}
input#absender,
textarea {
  width: 550px;
  border: 1px solid #8c8c8c;
  margin-bottom: 1em;
}
textarea {
  height: 7em;
}
input:focus,
textarea:focus {
  background-color: #d9d9d9;
}