@import './md-input.css';

html{
	background-color: #fafafa;
}
h1{
	font-size: 1.25rem;
	font-weight: 300;
	text-align: center;
	margin-top: 2rem!important;
}
#app{
	margin-top: 64px;
}
.auth-full-screen{
	height: calc(100vh - 64px);
}
@media screen and (max-width: 600px) {
	.auth-full-screen{
		height: calc(100vh - 56px);
	}
	#app{
		margin-top: 56px;
	}
}

.img-preview{
	background-image: url('https://www.midelivery.cl/landing/img/contacto-bg.jpg');
	background-size: cover;
	display: flex;
    justify-content: center;
	position: relative;
}
.img-preview:before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.6);
	content: '';
}
.img-preview img{
	height: 95%;
	position: absolute;
	top: 2.5%;
	opacity: 0;
	transition: opacity .2s linear;
}
.img-preview img.active{
	opacity: 1;
}
.no-margin{
	margin:0;
}
small.politicas{
	display: block;
	margin-bottom: .4rem;
	margin-top: .2rem;
}
footer{
	margin-top: 0px!important;
}