/*MAIN SETTINGS*/

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Poppins', sans-serif;
	font-size: 0.9em;
	color: #fff;
	background-color: #25a8e0;
	animation: colors 25s infinite;
}

@keyframes colors {
	0% {
		background-color: #25a8e0;
	}
	25% {
		background-color: #3ab54a;
	}
	50% {
		background-color: #fbaf41;
	}
	75% {
		background-color: #652e90;
	}
	100% {
		background-color: #25a8e0;
	}
}

#main-container {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

a {
	color: #fff;
	text-decoration: none;
	outline: none;
}

img:hover {
	opacity: 0.8;
}

p {
	margin-bottom: 15px;

}

h1 {
	font-weight: 600;
	font-size: 1.8em;
	margin-bottom: 15px;
}

.text-min {
	font-size: 0.8em;
}

#center {
	position: absolute;
	top: 30%;
	left: 50%;
	width: 300px;
	height: 320px;
	margin-top: -160px;
	margin-left: -150px;
	text-align: center;
	letter-spacing: 0.1em;
}

#center img {
	margin-bottom: 26px;
	width: 300px;
}

#center .line {
	width: 300px;
	height: 14px;
	background-image: url(../line.svg);
	background-repeat: no-repeat;
	background-position: center center;
	margin-bottom: 40px;
}

h3 {
	width: 100%;
	border: 1.5px solid #fff;
	margin-bottom: 0px;
	border-radius: 5px;
}

h3:hover {
	opacity: 0.8;
	background-color: #464db1;
	cursor: pointer;
}

/* [MS 20260418] Stili per formattare la "finestra" di richiesta utente, per il recupero della password */

#overlayDim {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
}

#modalPassword {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	z-index: 101;
	width: 340px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	color: #333333;
}

#modalPassword h3 {
	margin-top: 0;
}

#modalPassword h3:hover {
	opacity: 1;
	background-color: transparent;
	cursor: default;
}

#modalPassword button {
	min-width: 100px;
}

#inputEmail {
	width: 100%;
	padding: 8px;
	margin: 10px 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
}

#modalMessage {
	font-size: 13px;
	margin: 8px 0;
	min-height: 18px;
}

#btnInviaRichiesta, #btnChiudiModal {
	padding: 8px 16px;
	margin-top: 8px;
	margin-right: 8px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}


#btnInviaRichiesta {
	background: #1a3a6b;
	color: #fff;
}

#btnChiudiModal {
	background: #eee;
	color: #333;
}

#btnForgotPassword {
	display: block;
	padding-top: 50px;
	letter-spacing: 0.1em;
}

#btnForgotPassword:hover {
	text-decoration: underline;
}

#btnInviaRichiesta:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}
