/* Style inputs, select elements and textareas */
input[type=text],
input[type=email],
input[type=number],
input[type=password],
select, textarea{
	width: 100%;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
	resize: vertical;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
select:focus, textarea:focus{
	/*outline: 2px solid orange;
	background-color: lime;*/
	border: 2px solid #4CAF50;
	border-radius: 5px;
}

/* Style the label to display next to the inputs */
label {
	padding: 6px 12px 10px 0;
	display: inline-block;
	color: purple;
}

/* Style the submit button */
input[type=submit],
input[type=button]{
	background-color: #4285F4;
	color: white;
	padding: 7px 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	/*float: right;*/
}

input[type=submit]:hover,
input[type=button]:hover{
	background-color: #76A7FA;
}
/* Floating column for labels: 25% width */
.col-label {
	float: left;
	margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-input {
	float: left;
	margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
	.divbox, .col-label, .col-input{
		width: 100%;
		margin-bottom: 0;
	}
	label{
		padding-bottom: 0;
		margin-top: 5;
	}
	input[type=submit], input[type=button] {
		width: 100%;
		margin-bottom: 5;
	}
}