/* Kiss Empire — branded auth pages (login / register / password). */

.ke-auth {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 16px;
}

.ke-auth-card {
	width: 100%;
	max-width: 420px;
	background: #14141b;
	border: 1px solid rgba( 255, 255, 255, 0.08 );
	border-radius: 16px;
	padding: 34px 30px;
	color: #f4f4f6;
	box-shadow: 0 24px 60px rgba( 0, 0, 0, 0.5 );
}

.ke-auth-logo {
	font-weight: 800;
	font-size: 24px;
	color: var(--ke-accent,#e50914);
	text-align: center;
	margin-bottom: 6px;
	letter-spacing: -0.5px;
}
.ke-auth-logo span { color: #fff; }

.ke-auth-title {
	text-align: center;
	font-size: 22px;
	margin: 0 0 20px;
}

.ke-auth-form { display: flex; flex-direction: column; gap: 14px; }
.ke-auth-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: #c9c9d4; }
.ke-auth-form input[type=text],
.ke-auth-form input[type=email],
.ke-auth-form input[type=password] {
	width: 100%;
	background: #0b0b0f;
	border: 1px solid rgba( 255, 255, 255, 0.14 );
	border-radius: 9px;
	padding: 12px 13px;
	color: #fff;
	font-size: 15px;
	box-sizing: border-box;
}
.ke-auth-form input:focus { outline: none; border-color: var(--ke-accent,#e50914); }
/* select (nazionalità, lingua) uniformati agli input del form */
.ke-auth-form select {
	width: 100%;
	background: #0b0b0f;
	border: 1px solid rgba( 255, 255, 255, 0.14 );
	border-radius: 9px;
	padding: 12px 36px 12px 13px;
	color: #fff;
	font-size: 15px;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23c9c9d4' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 13px center;
}
.ke-auth-form select:focus { outline: none; border-color: var(--ke-accent,#e50914); }

.ke-auth-check {
	flex-direction: row !important;
	align-items: center;
	gap: 8px !important;
	font-weight: 500 !important;
	font-size: 13px !important;
}
.ke-auth-check input { width: auto; }

.ke-auth-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 13px 18px;
	border-radius: 9px;
	border: 0;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	background: rgba( 255, 255, 255, 0.12 );
	color: #fff;
	text-decoration: none;
	box-sizing: border-box;
}
.ke-auth-btn--primary { background: var(--ke-accent,#e50914); }
.ke-auth-btn--primary:hover { background: var(--ke-accent-2,#ff2d3d); }

.ke-auth-links {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
	font-size: 14px;
}
.ke-auth-links a { color: #a0a0b0; text-decoration: none; }
.ke-auth-links a:hover { color: #fff; }

.ke-auth-notice {
	padding: 11px 14px;
	border-radius: 9px;
	margin-bottom: 16px;
	font-size: 14px;
}
.ke-auth-notice--ok { background: #123a24; color: #7ee2a8; }
.ke-auth-notice--error { background: #3a1414; color: #f6a5a5; }
