body {
  font-family: Georgia;
  padding: 0px; 
  font-size: 18px;
}

h1 {
  font-style: italic;
  padding: 0px; margin: 0px;
  font-size: 18px;
  font-weight:bold;


}

h2 {
	font-size: 14px;
	font-weight:normal;
	width:90%;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
}

.kontener {
  padding: 0px; 
  margin: 0px;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  position:absolute;
  
  display: flex;
  align-items: center;
  justify-content: center

}


.lewa {
  float: left;
  width: 50%;
  height: 100%;
  margin: 0x 0px 10px 0px;
  position: relative;
  padding: 0px 0px 20px 0px; 
  border-width: 0px;
  border-style: solid; 
  border-color: black;
  background-color: white;
  display: inline-block;
  
  background-repeat: no-repeat;
  background-size: 99%;
  

}


.prawa {
  float: right;
  text-align:center;
  width: 50%;
  height: 80%;
  left:0px;
  top:0px;
  margin: 0px 10px 0px 0px;
  min-height: 365px;
  background-color: white; 
  padding: 20px; 
  border-width: 15px;
  border-style: solid; 
  border-color: #009688;
  position: relative;
	
}

.radiobox {
  float: right;
  text-align:left;
  width: 75%;
  left:0px;
  top:0px;
  margin: 0px;
  background-color: white; 
  padding: 20px; 
  border-width: 0px;
  border-style: solid; 
  border-color: #fbbe04;
  position: relative;
	
}

.pr2 {
  display:none;
  }

.mis {
	width: 18%;
	right: 0px;
	bottom: 0px;
	position: absolute;
}

.str {
	width: 100px;
	height:60px;
	left: 0px;
	bottom:0px;
	position: absolute;
}




input[type=text]
{
	width: 70%;
	text-align:center;
	
	background-color: #efefef;
	color: #666;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 10px;
	box-sizing: border-box;
	outline: none;
	margin-top: 10px;
}


input[type=text]:focus
{
	-webkit-box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
	-moz-box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
	box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
	border: 2px solid #a5cda5;
	background-color: #e9f3e9;
	color: #428c42;
}


input[name=dalej]
{

	background-color: #bd171b;
	width: 70%;
	font-size:14px;
	font-weight:bold;
	color: white;
	padding: 10px 10px;
	margin: 10px 0px 70px 0px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	letter-spacing: 2px;
	outline: none;
	box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
	
}

input[type=submit]
{

	background-color: #009688;
	width: 70%;
	font-size:14px;
	font-weight:bold;
	color: white;
	padding: 10px 10px;
	margin: 10px 0px 10px 0px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	letter-spacing: 2px;
	outline: none;
	box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
	
}


button
{
	background-color: #ff0000;
	width: 70%;
	font-size:14px;
	font-weight:bold;
	color: white;
	padding: 10px 10px;
	margin: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	letter-spacing: 2px;
	outline: none;
	box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
	
}


input[type=submit]:focus,
input[type=button]:focus
{
	-webkit-box-shadow: 0px 0px 15px 5px rgba(204,204,204,0.9);
	-moz-box-shadow: 0px 0px 15px 5px rgba(204,204,204,0.9);
	box-shadow: 0px 0px 15px 5px rgba(204,204,204,0.9);
}

input[type=submit]:hover
{
	background-color: #026259;
}
	

input[type=button]:hover
{
	background-color: #870306;
}



/* -----------------------------------------------------------RADIO */

 input[type=radio] {
	display: none; /* ukrywamy nasz input */
	
}

input[type=radio] + label {
	position: relative;
	padding-left: 40px; /* margines wewnętrzny - trzeba zrobić trochę miejsca dla naszego pola */
	 
}

input[type=radio] + label:before {
	position: absolute;
	content: "";
	display: block; /* koniecznie element blokowy, aby móc nadać odpowiednie wymiary */
	width: 20px;
	height: 20px;
	top: 0; /* ustalamy pozycje */
	left: 0;
	cursor: pointer; /* dodamy jeszcze odpowiedni kursor */
	transition: all .6s ease;
    -webkit-transition: all .6s ease;
    background-color: #009688;
	border: 4px solid #009688;
	
}


/* radio */
input[type=radio] + label:before {
    border-radius: 0%; /* aby input radio był okrągły */

}

/* gdy zaznaczony */
input[type=radio]:checked + label:before {
    background-color: #ffffff;
}

/* -----------------------------------------------------------Responsive layout  */
@media all and (max-width: 820px) {
	body {
	  font-family: Georgia;
	  padding: 0px; 
	  font-size: 16px;
	  border-width: 10px;
	  border-style: solid; 
	  border-color: #009688;

	  }   

	div.kontener {
	  padding: 0px; 
	  margin: 0px;
	  width: 100%;
	  height: 100%;
	  left: 0px;
	  top: 0px;
	
	  position:relative;
	  align-items: center;
	  justify-content: center;

	}

   
      .lewa {
	  display:none;
	  }
	  
	  div.prawa {

	  float: left;
	  text-align:center;
	  width: 100%;
	  position:relative;
	  left:0px;
	  top:0px;
	  margin: 0px;
	
	  background-color: white; 
	  padding: 0px; 
	  border-width: 0px 0px 10px 0px;
	  border-style: solid; 
	  border-color: #009688;
	  
	  
	  }
	  
	  div.pr2 {
	  position:relative;
	  width: 100%; 
	  margin: 0px;
	  padding: 0px;
	  display:block;	  

	  }
	  
	  input[type=submit]
{

	background-color: #009688;
	width: 45%;
	font-size:14px;
	font-weight:bold;
	color: white;
	padding: 10px 10px;
	margin: 10px 0px 60px 0px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	letter-spacing: 2px;
	outline: none;
	box-shadow: 0px 0px 10px 2px rgba(204,204,204,0.9);
	
}