@import url('https://fonts.googleapis.com/css?family=Droid+Sans:400,700');

body {
	font-family: 'Droid Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5em;
	color: #78838e;
	background: #fafafa;
}


/* SET LINE-HEIGHT */

#registration_maintitle {
	line-height: 1.5em;
}


#registration_profilemessage {
	line-height: 1.5em;
	margin-top: 10px;
}

/* HIDE FIELDS */

#registration_Address {
	display: none;
}

#registration_Question {
	display: none;
}

#registration_Questionbox {
	display: none;
}

/* STYLE INPUT FIELDS */

input[type="text"] {
	border: 1px solid #ddd;
    background: #fff;
	width: 500px;
	color: #777;
	padding: 10px;
    margin-top: 10px;
    font-size: 12px;
}

select {
	border: 1px solid #ddd;
    background: #fff;
	width: 500px;
	color: #777;
	padding: 10px;
    margin-top: 10px;
    font-size: 12px;
	font-family: 'Droid Sans', Arial, sans-serif;
}

/* STYLE SUBMIT BUTTON */

.button {
	border: 1px solid #fd6b2f;
	border-radius: 2px;
	box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
	color: #eee;
	cursor: pointer;
	font-size: 14px;
	line-height: 21px;
	padding: 6px 14px;
	background-image: -webkit-linear-gradient(top, rgb(243, 139, 60) 0%, rgb(254, 129, 42) 100%);
}

.button:hover {
	color: #ffffff;
}

/* REMOVING FLOAT FROM DESCRIPTION FIELDS */

#registration_CompanyName {
	float: none;
}

#registration_Title {
	float: none;
	margin-top: 10px;
}

#registration_Firstname {
	float: none;
	margin-top: 10px;
}

#registration_Surname {
	float: none;
	margin-top: 10px;
}

#registration_Gender {
	float: none;
	margin-top: 10px;
}

#registration_EmailAddress {
	float: none;
	margin-top: 10px;
}

#registration_StandardProfile {
	float: none;
	margin-top: 10px;
}

/* SET MOBILE STYLING */

@media only screen and (max-width: 480px) {

   input[type="text"] {
	width: 200px;
	}
	
	select {
	width: 200px;
	}
}



