/* CSS Document */

form{
	padding-top: 40px;
	color: white;

	text-align: center;
	
}
.form-group {
	align-content: center;
}

label, input, textarea{
	/*display: block;	*/
	
}
input, textarea{
	width: 300px;	
	border: none;
	border-radius: 20px;
	outline: none;
	padding:10px;
	margin-bottom: 10px;
	/*font-family: 'Sniglet', cursive;*/
	font-size: 1em;
	color: #000000;
	/*background-color: #E3E3E3;*/
	background-color: #ffffff;
	transition: border 0.5s;
	-webkit-transition: border 0.5s;
	-moz-transition: border 0.5s;
	-o-transition: border 0.5s;
	/*border: solid 3px #E3E3E3;*/
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	box-shadow:2px 2px 8px rgba(0,0,0,.3);
}
input:focus, textarea:focus{
	border: solid 3px #77bde0;	
}

.textareaOLD{
	height: 100px;	
	resize: none; 
	overflow: auto;
}
textarea{  
 /* display:block;*/
  box-sizing: padding-box;
  overflow:hidden;
  /*width:250px;*/
  font-size:14px;
  /*margin:50px auto;*/
  border-radius:6px;
  border:0;
}
input[type=submit]{
	background-color: #4595E5;
	color: white;
	height: 50px;
	width: auto;
	min-width: 160px;
	cursor: pointer;
	margin-top: 5px;
	font-size: 1.29em;
	/*font-family: 'Sniglet', cursive;*/
	font-family: 'Fredoka One';
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
}
input[type="submit"]:hover{
	background-color: #45AAFF;
	
}
label{
	font-size: 1.5em;
	margin-top: 20px;
	padding-left: 20px;
}
::-webkit-input-placeholder {
   color: #E3E3E3;
}

:-moz-placeholder { /* Firefox 18- */
   color: #E3E3E3;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #E3E3E3;  
}

:-ms-input-placeholder {  
   color: #E3E3E3;  
}

.alert_error{margin: auto;margin: 5px 0 5px 0;color: #FF0000;font-weight: bold;font-size:12px;padding-top:0px;padding-bottom:0px;}

.alert_success{margin: auto;background: #D5FFCE;border: 1px solid #9ADF8F;cursor: pointer;margin: 5px 0 5px 0;color: #508600;font-weight: bold;font-size:12px;padding-top:5px;padding-bottom:8px;}


@media screen and (max-width: 767px) {
	input, textarea{
		width: 300px;
		max-width: 90%;
	}
}

@media screen and (max-width: 479px) {
	input, textarea{
		width: 300px;
		max-width: 90%;
	}
	
}