* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Arial, sans-serif;
	background-color: rgb(4, 27, 46); /* Fundo azul escuro com RGB */
}

.background-image {
	background-image: url('/static/images/shelfvision-background1.png');
	background-size: contain;
	background-position: center;
	height: 100%;
	width: 100%;
	background-size: contain; /* A imagem inteira aparece */
	background-repeat: no-repeat; /* Evita repetição */
	background-position: 15% center;
	/*.background-image {
	background-size: 100% 100%;*/ /* Estica a imagem para preencher toda a tela */
	/*background-repeat: no-repeat;*/ /* Evita repetição */
	/*}*/

	.login-container{
	background-color: rgb(250, 252, 255); /* Alterado para fundo branco */
	padding: 20px;
	border-radius: 10px;
	width: 300px;
	color: black; /* Texto em preto para contraste */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
}

/*h2 {
	text-align: center;
	margin-bottom: 15px;
	color: #1a237e;*/ /* Título em azul escuro */
/*}*/

h2 {
	text-align: center;
	margin-bottom: 15px;
	color: rgb(25, 75, 100);
	font-family: 'Rajdhani', sans-serif;
	letter-spacing: 1px;
	font-size: 22px;
	text-transform: uppercase;
}

.input-group {
	position: relative;
	margin-bottom: 15px;
}

.outlined-text-field {
	position: relative;
	width: 100%;
}

	.outlined-text-field input {
		width: 100%;
		padding: 12px 10px 8px;
		border: 2px solid gray;
		border-radius: 5px;
		font-size: 16px;
		outline: none;
		transition: border-color 0.3s;
		background-color: transparent;
	}

	.outlined-text-field label {
		position: absolute;
		top: 50%;
		left: 12px;
		transform: translateY(-50%);
		font-size: 16px;
		color: gray;
		background-color: white;
		padding: 0 5px;
		transition: 0.3s ease-in-out;
	}

	.outlined-text-field input:focus {
		border-color: #6200ea;
	}

		.outlined-text-field input:focus + label,
		.outlined-text-field input:not(:placeholder-shown) + label {
			top: 0;
			font-size: 12px;
			color: #6200ea;
			padding: 0 5px;
		}

/*button {
	width: 100%;
	padding: 10px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
}

	button:hover {
		background-color: #45a049;
	}*/

button {
	width: 100%;
	padding: 10px;
	background-color: rgb(30, 120, 150); /* Azul forte */
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 20px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-family: 'Rajdhani', sans-serif;
}

	button:hover {
		background-color: rgb(47, 155, 190); /* Azul mais escuro no hover */
	}

.links {
	text-align: center;
	margin-top: 10px;
}

a {
	color: rgb(25, 75, 100); /* Cor azul escuro para os links */
	text-decoration: none;
	font-family: 'Rajdhani', sans-serif;
	font-size: 18px;
}

	a:hover {
		text-decoration: underline;
	}


