body {
	font-family: Arial, sans-serif;
	background:
		url('/FlashPhoenix/resources/images/fundo_moove.jpg')
		no-repeat center center fixed !important;
	background-size: cover !important;
	color: #333;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
.fundoBranco {  
    background: #FFFFFF !important;  
}

.form-container {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 400px;
	text-align: center;
}

.form-container .logo {
	width: 100px;
	margin-bottom: 20px;
}

.form-container h1 {
	color: #4c91d5;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: bold;
}

.form-container p {
	font-size: 14px;
	color: #555;
}

.form-container input {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
}

.form-container input::placeholder {
	color: #aaa;
	font-style: italic;
}

.form-container button {
	width: 100%;
	padding: 10px;
	background: #4c91d5;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.form-container button:hover {
	background: #3578a5;
}

.form-container .secondary-button {
	background: #6bc4cf;
	margin-top: 10px;
}

.form-container .secondary-button:hover {
	background: #56a6ae;
}

.form-container small {
	display: block;
	margin-top: 15px;
	color: #777;
	font-size: 12px;
}