.register-container{
	/*background-size: cover;
	background-position: center;*/
	background: rgb(187,205,225);
    background: -moz-linear-gradient(top, rgba(187,205,225,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(187,205,225,1) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(187,205,225,1) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bbcde1', endColorstr='#ffffff',GradientType=0 );
		/*min-height: 95vh*/
}
.register-wrap{
	max-width: 940px;
	margin: auto;
	padding: 100px 20px 100px;
}
.register-wrap .text-control{
	color: var(--color-1);
	padding-right: 35px;
}
.register-wrap .text-control p.subtitle{
	font-size: 18px;
	margin-bottom: 5px;
}
.register-wrap .text-control p.title{
	font-size: 30px;
	font-weight: 900;
	line-height: 1.2;
}
.register-wrap .text-control li{
	font-size: 15px;
	position: relative;
	padding-left: 27px;
	margin-bottom: 10px;
}
.register-wrap .text-control li:before{
	content: '\f00c';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	top: 5px;
	left: 0;
}
.login-register > ul > li{
	display: inline-block;
	vertical-align: middle;
}
.login-register > ul > li a{
	color: var(--color-1);
	font-weight: normal;
	font-size: 20px;
	text-decoration: none;
	padding: 10px;
}
.login-register > ul > li a.current{
	font-weight: 900;
}
.login-box{
	border-radius: 20px;
	overflow: hidden;
	padding: 30px;
	background-color: white;
	margin-top: 20px;
}
.login-box input[type="text"],
.login-box input[type="password"],
.login-box input[type="email"],
.login-box textarea{
	border: 1px solid #B4CBFE;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
}


.login-box input[type="text"]::-webkit-input-placeholder,
.login-box input[type="password"]::-webkit-input-placeholder,
.login-box input[type="email"]::-webkit-input-placeholder,
.login-box textarea::-webkit-input-placeholder{ /* Edge */
  color: #B4CBFE
}

.login-box input[type="text"]:-ms-input-placeholder,
.login-box input[type="password"]:-ms-input-placeholder,
.login-box input[type="email"]:-ms-input-placeholder,
.login-box textarea:-ms-input-placeholder{ /* Internet Explorer 10-11 */
  color: #B4CBFE
}

.login-box input[type="text"]::placeholder,
.login-box input[type="password"]::placeholder,
.login-box input[type="email"]::placeholder,
.login-box textarea::placeholder {
  color: #B4CBFE
}
.form-aviso p{
	font-size: 14px;
}

.login-box .button-container input[type="submit"] {
    background-color: #467EFC;
    border: 1px solid #467EFC;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    padding: 10px 30px;
}

.login-box select{
	-webkit-appearance:none;
    border: 1px solid #B4CBFE;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}
.login-box .field{
	margin-bottom: 15px;
}
.login-box .field a{
	font-weight: 600;
	text-decoration: none;
}
.login-box img{
	width: 130px;
	margin-bottom: 15px;
}

@media only screen and (max-width:991px) {
	.register-wrap .text-control{
		padding-right: 0;
	}

}

@media only screen and (max-width:767px) {
	.register-wrap .text-control{
		margin-bottom: 50px;
	}
	.register-wrap{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.register-container{
		height: auto;
	}
	.login-register > ul > li a{
		font-size: 18px;
	}
}






