body,html { 
	background-size: 100%;
	font-family: 'Roboto Condensed', sans-serif; 
    height: 96%;
    width: 96%;
    margin: 1%;
    padding: 0px;
    font-size: 14px;
}

.container{
	width:100%;
}

.Box-Login{
	width:60%;
	margin:50px 15% 0 15%;
	padding:5%;
	background-color:#EAEAEA;
	border-radius:5px;
	overflow:hidden;
}

.Box-Action{
	width:90%;
	margin:10px 4% 0 4%;
	padding:1%;
	background-color:#EAEAEA;
	border-radius:5px;
	overflow:hidden;
}

.Box-Riga{
	width:100%;
	margin:0 0 10px; 0;
	float:left;
}

.Titolo{
	font-size:20px;
	font-weight:bold;
	color:#336699;
	text-align:center;
	overflow:hidden;
}

.Box-Riga .Titolo{
	font-size:20px;
	width:100%;
	float:left;
	text-align:center;
	margin-bottom:10px;
	color:#000000;
}

.Box-Riga .Contenuto{
	width:100%;
	float:left;
	text-align:center;
}

.Input{
	padding:10px;
	text-align:center;	
	border-radius:5px;
	border:0;
	min-width:200px;
}

.Select{
	text-align:left;
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #f8f8f8;
	appearance: none; /* Removes default arrow on some browsers */ 
	-webkit-appearance: none; /* Removes default arrow on iOS Safari */
}

.Button{
	padding:10px;
	text-align:center;	
	border-radius:5px;
	background-color:#336699;
	color:#FFFFFF;
	border:0;
	min-width:200px;
	cursor:pointer;
	text-decoration:none;
}

/* Add custom arrow */
select::-ms-expand {
	display: none; /* Removes default arrow in IE */
}

/* Custom dropdown arrow */
select::after {
	content: '▼'; /* Unicode character for dropdown arrow */
	position: absolute;
	right: 10px;
	pointer-events: none;
}

/* Styles for select in mobile view */
@media (max-width: 768px) {
	select {
		font-size: 18px; /* Adjust font size for better readability */
		color:black;
	}
	
	.Button { 
		width: 100%;
		padding: 12px; 
		font-size: 16px; 
	}
}