@charset "utf-8";
/* CSS Document */
body {
	margin: 0;
	padding: 0;
	text-decoration: none;
	background: linear-gradient(#545c5f, #8a8a8a);
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 100vh;
}

/** login **/
.loginform {
	display: flex;
	flex-direction: column;
	align-items: center;	
	margin-top: 10%;
	border: 1px solid #ffffff;
	border-radius: 15px;
	padding: 5%;
	background-color: transparent;
}

.logologin {
	height: 15vh;
	margin-bottom: 10%;
}

.d-flex {
	width: 100%;
	flex-direction: column;
	align-items: center;
}

.forgout {
	color: #ffffff;
	font-size: 12px;
}

.forgout:hover {
	color: #ffffff;
	transition: 0.3s ;
}

.custom-btn-light {
	background-color: #72939c;
	border: none;
	color: #ffffff;
}
/** fim do login **/

/** rodapé **/
.rodape {
	text-align: center;
	padding: 1%;
	width: 100%;
	background: #000000;
	position: absolute;
	bottom: 0;
	color: #ffffff;
}
/** fim do rodapé **/

@media screen and (max-width: 425px) {
	.loginform {
		border: none;
		margin-top: 40%;
	}
}