/* 
 * author luis freeman antonio
 * mail freemanmtc@noovem.me
 * since v 0.1
 *
 * standard css of the login, it must just overhide the materialize css
 *
 *  */

/* media - change the card(just the #login-card) properties, so it become better to see on small devices */
@media screen and (max-width: 600px){
	#login-card.card{
		background: transparent;
		box-shadow: none;
	}

	#login-card.card .card-content{
		padding: 0px;
	}
}
/* - */

/* body color - materialize blue-grey lighten-5 */
body{
	background-color: #eceff1;
}
/* - */

/* toast change color */
.toast-danger{
	background-color: #b71c1c; 
}
.toast-info{
	background-color: #0d47a1; 
}
.toast-warning{
	background-color: #f57f17; 
}
.toast-success{
	background-color: #1b5e20; 
}
/* - */

/* help block for forms */
.help-block{
	color:grey;
	font-size: 13px;
	position:relative;
	top:-10px;
	left:5px;

}

/* login page */
#login-card .reminders a{
	font-size: 11px;
	margin-top: 5px;
}

#login-card button{
	width: 100%;
}
/* - */
