.boxInput {
	width: 485px; 
	height: 50px; 
	background-color: white; 
	border-radius: 4px; 
	box-shadow: 0px 0px 10px black;
	margin-bottom: 10px;
}

body {
	background-color: #7DBDFF;
}

input#btnConferma {
	width: 170px; 
	border: none; 
	background-color: yellowgreen; 
	height: 30px;
  	box-shadow: 0px 0px 10px black;
  	border-radius: 4px;
}
input#btnConferma:active {
	box-shadow: 0px 0px 0px black;
}
input#btnConferma:hover {
	background-color: #4DB84D; 
}

input[type='text'] {
	border: solid 2px red;
}
input[type='email'] {
	border: solid 2px red;
}
select {
	border: solid 2px red;
}

input#datetimepicker {
	border: solid 2px yellow;
	margin-right: 10px;
	height: 26px;
}
input#datetimepicker2 {
	border: none;
	margin-right: 10px;
	height: 26px;
}

div#boxDatepicker {
	position: fixed; 
	top: 0; 
	left: 0; 
	margin: 20px;
	padding: 10px;
	box-shadow: 0px 0px 10px black;
	background-color: blue;
	border-radius: 4px;
}
div#boxDatepicker2 {
	position: fixed; 
	right: 0; 
	top: 0;
	margin: 20px;
	padding: 10px;
	box-shadow: 0px 0px 10px black;
	background-color: red;
	border-radius: 4px;
}


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

/* ---------- FONTAWESOME ---------- */
/* ---------- http://fortawesome.github.com/Font-Awesome/ ---------- */
/* ---------- http://weloveiconfonts.com/ ---------- */

@import url(http://weloveiconfonts.com/api/?family=fontawesome);

/* ---------- ERIC MEYER'S RESET CSS ---------- */
/* ---------- http://meyerweb.com/eric/tools/css/reset/ ---------- */

@import url(http://meyerweb.com/eric/tools/css/reset/reset.css);

/* ---------- FONTAWESOME ---------- */

[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}

/* ---------- GENERAL ---------- */

body {
	background-color: #C0C0C0;
	color: #000;
	font-family: "Varela Round", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5em;
}

input {
	border: none;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	-webkit-appearance: none;
}

/* ---------- LOGIN ---------- */

#login {
	margin: 30px auto;
	width: 400px;
}

#login h2 {
	background-color: blue;
	-webkit-border-radius: 20px 20px 0 0;
	-moz-border-radius: 20px 20px 0 0;
	border-radius: 20px 20px 0 0;
	color: #fff;
	font-size: 28px;
	padding: 10px ;
	margin:0px!important;
	text-align: center;
}

#login h2 span[class*="fontawesome-"] {
	//margin-right: 14px;
}

#login fieldset {
	background-color: #fff;
	-webkit-border-radius: 0 0 20px 20px;
	-moz-border-radius: 0 0 20px 20px;
	border-radius: 0 0 20px 20px;
	padding: 20px 26px;
	margin:0px!important;
}

#login fieldset p.login-label {
	color: blue;
	margin-bottom: 0px;
    padding: 2px 0px !important;
}

#login fieldset p.login-input {
	margin-top: 0px;
    margin-bottom: 20px;
	}

#login fieldset input {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#login fieldset input[type="text"], #login fieldset input[type="password"] {
	background-color: #eee;
	color: #777;
	padding: 4px 5px;
	width: 328px;
	border: solid 0px red;
}

#login fieldset input[type="submit"] {
	background-color: #33cc77;
	color: #fff;
	display: block;
	margin: 0 auto;
	padding: 4px 4px;
	width: 100px;
}

#login fieldset






