/*
css for account registration

2026 Zubisoft
 */
 
 @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
 @import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900');
 
 body {
	 margin: 0 !important;
	 font-family: 'Open Sans', sans-serif;
	 background-color: white;
 }
 
 .titel {
	 color: #0066CC;
	 font-size: 18px;
	 font-weight: bold;
	 font-family: 'Open Sans', sans-serif;
 }
 
 .normal {
	 color: black;
	 font-size: 14px;
	 font-weight: normal;
	 font-family: 'Open Sans', sans-serif;
 }
 
 .fett {
	 color: black;
	 font-size: 14px;
	 font-weight: bold;
	 font-family: 'Open Sans', sans-serif;
 }
 
 .orange {
	 color: chocolate;
	 font-size: 10px;
	 font-weight: bold;
	 font-family: 'Open Sans', sans-serif;
 }
 
 a:link {
	 color: blue;
	 font-size: 12px;
	 text-decoration: none;
	 font-family: 'Open Sans', sans-serif;
 }
 
 a:visited {
	 color: blue;
	 font-size: 12px;
	 text-decoration: none;
	 font-family: 'Open Sans', sans-serif;
 }
 
 a:hover {
	 color: mediumblue;
	 font-size: 12px;
	 font-weight: normal;
	 text-decoration: underline;
	 font-family: 'Open Sans', sans-serif;
 }
 
 a:active {
	 color: mediumblue;
	 font-size: 12px;
	 font-weight: normal;
	 text-decoration: underline;
	 font-family: 'Open Sans', sans-serif;
 }
 
 header {
	 height: 60px;
	 background: -webkit-linear-gradient(-45deg, #8ebcfc, #edf5ff);
	 background: -moz-linear-gradient(-45deg, #8ebcfc, #edf5ff);
	 background: -o-linear-gradient(-45deg, #8ebcfc, #edf5ff);
	 background: linear-gradient(-45deg, #8ebcfc, #edf5ff);
 }
 
 .container {
	 width: 100%;
	 padding-right: 15px;
	 padding-left: 15px;
	 margin-right: auto;
	 margin-left: auto;
 }
 
 @media screen and (min-width: 1200px) {
	 .container {
		 max-width: 1140px;
	 }
 }
 
 @media screen and (min-width: 992px) {
	 .container {
		 max-width: 960px;
	 }
 }
 
 @media screen and (min-width: 768px) {
	 .container {
		 max-width: 720px;
	 }
 }
 
 @media screen and (min-width: 576px) {
	 .container {
		 max-width: 540px;
	 }
 }
 
 header img {
	 margin-top: 10px;
	 height: 40px;
 }
 
 .content {
	 padding-left: 10px;
	 margin-top: 20px;
	 display: flex;
	 flex-direction: column;
 }
 
 .form {
	 display: flex;
	 flex-direction: column;
 }
 
 .form label {
	 font-size: 14px;
	 width: 150px;
	 display: inline-block;
 }
 
 .form div {
	 margin-bottom: 10px;
 }
 
 .form input {
	 margin-left: 10px;
	 padding: 5px;
	 width: 320px;
 }
 
 .form select {
	 margin-left: 10px;
	 padding: 5px;
	 width: 320px;
 }
 
 .error {
	 color: red;
 }
 
 .button2 {
	 display: inline-block;
	 border: 0px solid #ffffff;
	 cursor: pointer;
	 text-align: center;
	 text-decoration: none;
	 font: 14px Arial;
	 font-weight: bold;
	 padding: 8px 18px;
	 -webkit-border-radius: 3px;
	 -moz-border-radius: 3px;
	 border-radius: 3px;
	 color: #000000;
	 background: #e3e3e3;
	 background-image: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#dddddd));
	 background-image: -moz-linear-gradient(top, #e3e3e3, #dddddd);
	 background-image: -ms-linear-gradient(top, #e3e3e3, #dddddd);
	 background-image: -o-linear-gradient(top, #e3e3e3, #dddddd);
	 background-image: linear-gradient(top, #e3e3e3, #dddddd);
	 filter: progid:DXImaGETransform.Microsoft.gradient(startColorstr='#e3e3e3', endColorstr='#dddddd');
 }
 
 .button2:hover {
	 background: #e3e3e3;
	 background-image: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#e3e3e3));
	 background-image: -moz-linear-gradient(top, #bbbbbb, #e3e3e3);
	 background-image: -ms-linear-gradient(top, #bbbbbb, #e3e3e3);
	 background-image: -o-linear-gradient(top, #bbbbbb, #e3e3e3);
	 background-image: linear-gradient(top, #bbbbbb, #e3e3e3);
	 filter: progid:DXImaGETransform.Microsoft.gradient(startColorstr='#bbbbbb', endColorstr='#e3e3e3');
	 text-decoration: none;
	 color: #000000;
 }
 
 .button2:active {
	 color: #000000;
	 position: relative;
	 top: 1px;
 }