﻿/*-----------------------Forms------------------------------*/

/*------------------------
         CAPTCHA
-------------------------*/

.captcha{
    display:block;
	margin:0 auto;
	width:100%;

}

.captcha div{
	margin:0 auto;
	
}



/*------------------------
         FORMS WRAPPER
-------------------------*/

#wrapper {
	width:90%;
	height:auto;
	margin:30px auto;
	padding:0;
	padding-bottom:5%;
	text-align:center;

	
}



.button4{
    -webkit-appearance: none;
    -moz-appearance: none;
  	-webkit-border-radius: 0;
  	-moz-border-radius:0;	

}

input,textarea{ 
   -webkit-appearance: none;
   -moz-appearance: none;
   -webkit-border-radius: 0;
   -moz-border-radius:0;
    
	

}

fieldset {
	-webkit-box-shadow:0;
	-webkit-appearance: none;
    -moz-appearance: none;
  	-webkit-border-radius: 0;
  	-moz-border-radius:0;	
   	border:none;
	overflow:hidden;
	padding:0;
	text-align:center;
	
	
}

/*------------------------
         TEXT HEADERS
-------------------------*/

form h1 {
	padding:10px 0 0 120px;
	text-align:center;
}

form h2 {
	padding:10px 0 0 120px;
	text-align:center;
}

form h3 {
	padding:10px 0 0 120px;
	text-align:center;
}


/*------------------------
         UL
-------------------------*/

form ul {
	list-style: none;
	text-align:left;
	
}

form li {
	margin: 0.5em auto;
	text-align:left;

}

form label {
	display: inline-block;
	padding: 3px 0;
	text-align: left;
	width: 100px;
	vertical-align: top;
}



input, select, textarea {
	font: inherit;
	border-style:none;
	background-color:#fff;
	
}


/*------------------------
         INPUTS
-------------------------*/

input:focus, textarea:focus {
  background-color:#00bfb2;
  border:1px solid #00bfb2;
}

input:hover, textarea:hover, select:hover{
	border:1px solid #00bfb2;
}

input:active, textarea:active, select:active{
	border:1px solid #00bfb2;
}



input[type:text]{
	
background-color:#fff;
	
}

.large {
	width: 80%;
}

.medium {
	width: 65%;
}

.small {
	width: 30%;
}


textarea {
	font: inherit;
	width: 280px;
	height:200px;

}

select {
	height:35px;
}


/*------------------------
         CHECKBOX
-------------------------*/


/* The container for checkbox */
.chkcontainer {
  display: inline;
  position: relative;
  padding-left:35px;
  margin-bottom: 12px;
  width:100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.chkcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.chkcheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color:#fff;
}

/* On mouse-over, add a green background color */
.chkcontainer:hover input ~ .chkcheckmark {
  background-color: #00bfb2;
}

/* When the checkbox is checked, add a green background */
.chkcontainer input:checked ~ .chkcheckmark {
  background-color: #00bfb2;
}

/* Create the checkmark/indicator (hidden when not checked) */
.chkcheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.chkcontainer input:checked ~ .chkcheckmark:after {
  display:inline;
}

/* Style the checkmark/indicator */
.chkcontainer .chkcheckmark:after {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



/*------------------------
         BUTTONS
-------------------------*/


form.button{
	vertical-align:middle;	
	margin:0 auto;
	margin-top:20px;	

}

input#submit{
	border:none;
}




/*------ iPad --------*/
@media screen and (max-width: 768px){

#wrapper {
	width:100%;
	height:auto;
	margin:0 auto;
	padding:30px 0;
	overflow:hidden;


}

.large {
	width: 90%;
}

textarea {
	font: inherit;
	width: 90%;
	height:200px;
}

form h3 {
	padding:10px 0;
	text-align:center;
}



form li {
	margin: 0.5em 0;
	display:block;
	text-align:left;
}

form label {
	display: block;
	padding: 3px 0;
	text-align:left;
	width: 100px;
	vertical-align: top;
}

.radios input {
	margin:0 5px;
}

.radios label {
	margin-right:0;
	width: auto;
	display:inline;
}

.checkboxes{
   width:90%;
   margin:0; 
   border:1px solid #C0C0C0;
}

.checkboxes p{
	text-align:left;
	padding-left:2%;
	margin-left:0;
}

.checkboxes label{
	text-align:left;
	padding-left:2%;
	display:inline;
	width:200px;
	font-size:90%;
	
}
.checkboxes input{
	width:20px;
	height:20px;
	padding:0;
	
}

.button4{
   


}
}

/*------ iPhone --------*/
@media screen and (max-width: 470px){


#wrapper {
	width:100%;
	height:auto;
	margin:0 auto;
	padding:30px 0;
	overflow:hidden;


}

.medium{
	width: 90%;
	
}

.large {
	width: 90%;


}
