html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html,
body {
	min-height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	background: #fff url('../img/login-bg.jpg') no-repeat center center;
	background-size: cover;
	width: 100%;
}
.container {
	max-width: 100%;
	width: 800px;
	margin: 0 auto;
	display: flex;
	margin-top: 50px;
}
.container .left p {
	margin-left: 0;
	margin-right: 0;
}
.center,
.left,
.right {
	float: left;
	display: block;
	flex-wrap: nowrap;
	display: flex;
	flex-direction: column;
}
.center {
	background-color: white;
	width: 100% !important;
}
.left {
	width: 50%;
	
}
.right {
	width: 50%;
	background-color: rgba(36,37,42,0.80);
	box-shadow: 0px 0px 60px 0px rgba(0,0,0,0.50);
}
@media (max-width: 632px) {
	.container {
		display: block;
		padding: 10px;
		box-shadow: none;
		margin-top: 0px;
	}
	.left, .right {
		float: none;
		width: 100%;
	}
}
.left h1 {
	font-size: 25px;
	color: #d2232a;
	width: 100%;
	text-align: center;
	margin-bottom: 35px;
	letter-spacing: 3px;
}
.right {
	padding: 30px;
}
.right .text {
	color: white;
	font-size: 12px;
}
.right .text a {
	color: white;
}
ul {
	margin-left: 0px;
	padding-left: 1em;
}
form {
	width:400px;
	max-width: 100%;
	padding: 20px 50px 20px 50px;
	margin:20px auto;	
}
#logo {
	margin:0 auto;
	margin-bottom: 20px;
	width:170px;
}
h1{
	font-weight: bold;
	font-size: 16px;
	margin:0px;
  	padding:5px 30px;
  	text-align:center;
}
label{
	text-transform:uppercase;
	color: #656565;
	font-size: 12px;
	text-align:left;
}
.err{
	font-weight: bold;
	color: red;
	font-size: 14px;
  	text-align:center;
  	margin:8px;
}
p{
	margin:8px;
}
.input {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: white;
 	border: 0;
	border-bottom: 1.5px solid #A5A5A5;
	padding: 10px 0px 10px;
	width: 100%;
	margin-bottom: 20px;
}
.action {
	width: 120px;
	max-width: 100%;
	padding:8px;
	margin:15px auto 0 auto;
	display: block;
	background-color:white;
	color: #d2232a;
	font-size: 16px;
	text-transform:uppercase;
	border: 2px solid #d2232a;
	text-shadow: 1px 1px px #666;
    filter: dropshadow(color=#666, offx=1, offy=1);
	cursor: pointer;
}
.scopri__action {
	width: 100%;
	text-align: center;
	text-decoration: none;
	border: 0px none;
	background-color:white;
	color: #d2232a !important;
	font-size: 16px;
	text-transform:uppercase;
	text-decoration: none;
	padding:8px;
	margin:15px auto 0 auto;
	display: block;
}
.register {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
}
.register a {
	color: #d2232a;
}

h2.action_result {
	padding: 20px;
}

@media(max-width: 667px) {
	.g-recaptcha {
		transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;
	}
}

.alert-success {
	background-color: #9ee4a4;
	color: black;
	padding: 10px;
	margin-bottom: 25px;
}