    * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;        
      } 
      html {
        height: 100%;
        background-image: url(../bilder/odin.png);
        background-size: 100% 100%;
		height: 100%;
		display: table;
		width: 100%;
        background-repeat: no-repeat;
        border: black 1px solid;
	  }
	  label {
	    min-width: 10em;
	    display: inline-block;
	    text-align: left;
	  }
	  input { width: 20em; }
	  input[type="checkbox"], input[type="radio"] {
	    width:auto;  
	  }
	  label:first-child {
		vertical-align: top;
	  }
	  button[type="submit"] {
		margin-left: 17em;
	  }
	  button[type="submit"] {
		width: 8em;
		padding-top: 0.3em;
		padding-bottom: 0.3em;
		background: #dcdcdc;
		border: 1px solid #808080;
		border-radius: 8px; 
	  }
	  form {
		font-family: "Arial";
		height: 15em;
		position: relative;
		top: 50%;
		-webkit-transform: translateY(80%);
		-ms-transform: translateY(80%);
		transform: translateY(80%);
		width: 30em;
		margin-left: auto;
		margin-right: auto;
		padding-top: 1.5em;
		padding-left: 1.5em;
		background: white;

		border-radius: 15px;
		-webkit-box-shadow: 0 0 20px rgba(106,90,205,0.9);
		-moz-box-shadow: 0 0 20px rgba(106,90,205,0.9);
		box-shadow: 0 0 20px rgba(106,90,205,0.9);
	  }
	  .trans01 { opacity: 0.8; }
	  input:hover {
		background: #fafafa;
		border: 2px solid #6c6c6c; 
		-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
		-moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
		box-shadow: 0 0 10px rgba(0,0,0,0.2);
	  }
	  button[type="submit"]:hover {
		background:#c9c9c9;
		border: 2px solid #6c6c6c; 
	  }
	  button[type="submit"]:active {
		background:#8f8f8f;
	  }
	  footer {
		font-family: "Arial";
		position: fixed;
		bottom:0.0em;
		margin-left: -0.5em;
		width:100%;
		clear: both;
		background: #ffffff;	
		text-align: center;
        padding: 10px;
		color: black;
}