/* CSS Document */
form{
	padding-top: 40px;
	color: white;
	text-align: center;
	
}
.form-group {
	align-content: center;
}
.programName {
	font-size: 12px;
	color:black;
	display:inline-block;
	text-align:left;
	margin-left: -3px;
}
.errmsg {
	font-family: 'Fredoka';
	/*font-weight: lighter;*/
	font-size: 14px;
	color:red;
}
.OKMSg {
	font-family: 'Fredoka';
	/*font-weight: lighter;*/
	font-size: 14px;
	color:blue;
}
.countrySelect {
	width:280px;	
	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);
}
label, input, textarea{
	/* display: inline-block;	*/
}
checkbox {
	display:inline-block;
	text-align:left;
}
input[type=text], input[type=email], input[type=submit], textarea{
	width: 320px;	
	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;	
}

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: 10px;
	font-size: 1.29em;
	/*font-family: 'Sniglet', cursive;*/
	font-family: 'Fredoka One', cursive;
	-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: #a8a8a8;
}
::-webkit-textarea-placeholder {
   color: #a8a8a8;
}
:-moz-placeholder { /* Firefox 18- */
   color: #a8a8a8;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #a8a8a8;  
}

:-ms-input-placeholder {  
   color: #a8a8a8;  
}
:-ms-textarea-placeholder {  
   color: #a8a8a8;  
}
.message {
    font-family:'Source Sans Pro',arial,sans-serif;
    font-size:1.1em;
    display:none;
    padding-top:10px;
    padding-bottom:10px;
    background-color:#2ABCA7;
    width: 80%;
    margin:auto;
    color: #FAFAFA;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    border-radius:6px;
}

#trialform label.error {
	color:red;
	margin-left: 10px;
	width: auto;
	display: inline;
}
input.error { border: 1px dotted red; }



@media screen and (max-width: 767px) {
	input[type=text], input[type=email], input[type=submit], textarea{
		max-width: 80%;	
	}
	
	.countrySelect {
		max-width: 80%;	
	}
}


@media screen and (max-width: 479px) {
	input[type=text], input[type=email], input[type=submit], textarea{
		max-width: 80%;	
	}
	
	.countrySelect {
		max-width: 80%;	
	}
}