/* .login{
	margin-top: 150px;
}

.cadastrar{
	margin-top: 110px;
}

body{
	background-image: url('../img/bg.jpg');
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
} */

.login {
	margin-top: 150px;
}

.cadastrar {
	margin-top: 110px;
}

body {
	margin: 0;
	overflow-x: hidden;
}

/* Camada de fundo com zoom infinito */
.bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/bg.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
	animation: zoomInOut 15s infinite alternate ease-in-out;
	transform-origin: center;
}

/* Animação do zoom */
@keyframes zoomInOut {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.3);
	}
}