<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">form {
  /* Center the form on the page */
  margin: 0 auto;
  width: 350px;
  height: 180px;
  font: 14px/15px Cambria;
  /* Form outline */
  padding: 1em;
  border: 1px solid #CCC;
  border-radius: 1em;
  	background: ;  
}

#naam {
  position: relative;	

  left: 30px
  width: 200px;  
  height: 30px;  
  	background: ; 
}

#note2 {
  position: relative;	
  top: 20px;
  left: 30px
  width: 200px;  
  height: 20px;  
  	background: ; 
}

input,
textarea {
	
  /* To make sure that all text fields have the same font settings
     By default, textareas have a monospace font */
  font: 1em sans-serif;

  /* Uniform text field size */
  width: 300px;
  box-sizing: border-box;

  /* Match form field borders */
  border: 1px solid #999;
}

input:focus,
textarea:focus {
  /* Additional highlight for focused elements */

  border-color: #000;
}

textarea {
  /* Align multiline text fields with their labels */
  vertical-align: top;
  	position: relative;	
	top: 5px;
  /* Provide space to type some text */
  height: 5em;
}

.button {
  /* Align buttons with the text fields */
  	position: relative;	
	top: 100px;
  padding-left: 0px; /* same size as the label elements */
}

button {
  /* This extra margin represent roughly the same space as the space
     between the labels and their text fields */
  margin-left: .5em;
}</pre></body></html>