
	form  {
		/*width: 100% ;*/
		/*margin-left: 10px ;*/
		/*position: relative ;		*/
		color: #717475 ;
		
    border: 1px solid black;
		border-radius:.3em;
    width: 90%;
    background-color: whitesmoke;
    margin: 1em auto;
    padding: 0 1em;		
	} 
	
	form label{
    display: block;
    font-size: 0.8em;
    color: darkslategrey;
    padding-left: 3px; 
	}	
	
	input,
	textarea,
	select
	{
    width: 100%;
    font-size: 1em; 
    padding: 4px;
    font-family: inherit;
    font-weight: lighter;
    border:1px solid gray;
    outline: none;
    border-radius: 0.3em;
		background-color: white;
	}
	
	input[type=radio],
	input[type=checkbox]
	{
		padding: 0;
		border:none;
		width: auto;
	}	
	
	input:focus,
	textarea:focus,
	select:focus
	{ 
    border:1px solid red;
	}

	input[type=submit] {
    background-color: limegreen;
    cursor: pointer;
    width: 14em;
    padding: .3em 0;
    border-radius: 0.7em;
	}

	input[type=submit]:hover {
    background-color: yellow;
    box-shadow: 2px 2px 2px grey;
	}

/*	
	
	
	
	form  section{
    display:-webkit-flex;
    display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;		
  }
	form fieldset {
		-webkit-flex: 1;
		flex: 1 ;
		padding:10px;
		border: none;
  }
	fieldset legend {
		margin-bottom: 10px;
	}
	
  label.check {
    display:inline;
    position: relative;
    margin:0;      
  }	
  input[type=checkbox] {
    margin-top: 20px;
    padding: 0;
    width:1em;
    border:1px solid gray;
  }      
  label.check::after {
    content: "";
  }
	label.ohneDP::after {
		content: "";
	}
	input[type=text], 
	input[type=tel], 
	input[type=email], 
	input[type=number], 
	textarea, 
	select {
		margin: 0 0 1em 30% ;
		padding: .2em .5em ;
		width: 45% ;
		background-color: #fbfcfc ; 
		color: 84a0a9 ;
		border: 1px solid #84a0a9 ;  
	}
	input[type=radio] {
		margin: 0 0 0 0 ;
	}
	input[type=text] + label, 
	input[type=tel] + label, 
	input[type=email] + label, 
	input[type=number] + label,
	textarea + label,
	.SelectAnrede	{
		text-align: right;
		line-height: 1.5;
		width: 20%;
		position: absolute;
		left: 0 ;
	}	
	
	input[type=submit].styled {
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
		margin: 0 0 1em 30% ;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color:  #239b56 ;
    background-image: linear-gradient(to top left,
                                      rgba(0, 0, 0, .2),
                                      rgba(0, 0, 0, .2) 30%,
                                      rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
	}

	input[type=submit].styled:hover {
    background-color:  #82e0aa ;
		color: #239b56 ;
	}

	input[type=submit].styled:active {
    box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6),
                inset 2px 2px 3px rgba(0, 0, 0, .6);
	}
	
	select {
		width: auto ;
	}

	label::after {
		content: ": ";
	}
	input:required + label::after, textarea:required + label::after, select:required + label::after {
		position: absolute;
		content: ":★";
	}

*/





































