/* Estil del formulari d'inici de sessió */
.artistespro-login-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	background-color: #f4f4f4;
}

.artistespro-login-box {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	width: 320px;
	text-align: center;
}

.artistespro-login-box h2 {
	margin-bottom: 20px;
	color: #f7a202;
}

.artistespro-login-box input[type="text"],
.artistespro-login-box input[type="password"] {
	width: 100%;
	padding: 10px;
	margin: 8px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.artistespro-login-box input[type="submit"] {
	width: 100%;
	padding: 10px;
	background-color: #f7a202;
	border: none;
	color: #fff;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.artistespro-login-box input[type="submit"]:hover {
	background-color: #f7a202;
}

.artistespro-login-box p a {
	color: #f7a202;
	text-decoration: none;
}

.artistespro-login-box p a:hover {
	text-decoration: underline;
}

