@charset "UTF-8";
/* CSS Document */

#freeexambanner {
	overflow: auto;
	padding: 60px 20px;
	
	background-color: #c7e4ea;
	background: radial-gradient(ellipse at center, #ffffff 0%,#7dc5db 100%);
	
	
	box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
	
	
	
	
}

#freeexambanner h1 {
	color: white;
	font-size: 40px;
	text-align: center;
}

#freeexambanner h2 {
	color: white;
	font-size: 30px;
	text-align: center;
}

.form-style-6{
    
   	box-sizing: border-box;
	max-width: 600px;
    margin: 30px auto 0px auto;
    padding: 30px;
    background: rgba(255,255,255,0.2);
	border-radius: 6px;
	border: 1px rgba(255,255,255,0.8) solid;
	
	
}

.form-style-6 input[type="text"],
.form-style-6 input[type="date"],
.form-style-6 input[type="datetime"],
.form-style-6 input[type="email"],
.form-style-6 input[type="number"],
.form-style-6 input[type="search"],
.form-style-6 input[type="time"],
.form-style-6 input[type="url"],
.form-style-6 input[type="tel"],
.form-style-6 textarea,
.form-style-6 select 
{
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    background: #fff;
    margin-bottom: 10px;
    border: none;
    padding: 10px;
    color: #555;
	
	border-radius: 3px;
	box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
}
.form-style-6 input[type="text"]:focus,
.form-style-6 input[type="date"]:focus,
.form-style-6 input[type="datetime"]:focus,
.form-style-6 input[type="email"]:focus,
.form-style-6 input[type="number"]:focus,
.form-style-6 input[type="search"]:focus,
.form-style-6 input[type="time"]:focus,
.form-style-6 input[type="url"]:focus,
.form-style-6 input[type="tel"]:focus,
.form-style-6 textarea:focus,
.form-style-6 select:focus
{
    box-shadow: 0 0 5px #43D1AF;
    padding: 10px;
    border: 1px solid #43D1AF;
}

.form-style-6 input[type="submit"],
.form-style-6 input[type="button"]{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    padding: 10px;
    background: #43D1AF;
    border-bottom-style: none;
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;    
    color: #fff;
	border-radius: 3px;
	box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
	
	background: #c7e4ea;
	background: -moz-linear-gradient(top, #7dc5db 0%, #c7e4ea 50%, #bad5db 51%, #ffffff 100%);
	background: -webkit-linear-gradient(top, #7dc5db 0%,#c7e4ea 50%,#bad5db 51%,#ffffff  100%);
	background: linear-gradient(to bottom, #7dc5db 0%,#c7e4ea 50%,#bad5db 51%,#ffffff  100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7dc5db', endColorstr='#c7e4ea',GradientType=0 );
}
.form-style-6 input[type="submit"]:hover,
.form-style-6 input[type="button"]:hover{
}