.news_form {
	display: flex;
	flex-direction: column;
	margin-top: 60px;
}
	
@media screen and (min-width : 992px) {
	.news_form { flex-direction: row; column-gap: 60px; flex-wrap: wrap; }
}

	.news_form div {
		width: 100%;
	}
	
	@media screen and (min-width : 992px) {
		.news_form div { width: calc((100% - 60px) / 2); }
	}
	
		.news_form input, .news_form select {
			width: 100%;
			margin-top: 10px;
			margin-bottom: 30px;
			background: #191919;
			border-radius: 8px;
			border: 0;
			height: 50px;
			padding: 0 20px;
			color: var(--first_color);
			font-family: 'Nunito', sans-serif;
			font-size: 16px;
			font-weight: 300;
		}
		
		.news_label {
			font-family: 'Dosis', sans-serif;
			font-size: 14px;
			font-weight: 300;
			letter-spacing: 1px;
			text-transform: uppercase;
		}
		
	.news_informativa {
		margin-top: 60px;
		font-size: 14px;
	}
	
		.news_informativa .title {
			background: #FEE316;
			background: linear-gradient(to right, #FEE316 0%, #EE7707 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			margin-bottom: 30px;
		}
		
	#news_invia {
		border-radius: 8px;
		font-size: 14px;
		letter-spacing: 2px;
		text-transform: uppercase;
		font-weight: 600;
		background: rgb(205,23,25);
		background: linear-gradient(90deg, rgba(205,23,25,1) 0%, rgba(110,54,140,1) 100%);
		width: 100px;
		height: 50px;
		line-height: 50px;
		text-align: center;
		margin-top: 30px;
	}
	
	.news_invia_cursor { cursor: pointer; }
	
	.inactive {
		filter: alpha(opacity=50);
		opacity: 0.5;
		cursor: not-allowed;
	}
	
	.chk2_msg {
		color: #f00;
	}
	


.error_box_red {
	color: #FF0000;
}