/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

* { 
	margin:0; 
	padding:0; 
}
body	{ 
	background:#f9f9f9; 
	font-family: Arial, Helvetica, sans-serif; 
	text-align: center;
	font-size: 18px;
}
img	{ 
	border:0;
	max-width:100%; 
	vertical-align:top; 
}
h1 {
    line-height: 1em;
    margin: 1em 0;	
}
h2 {
    line-height: 1em;
    margin: 1em 0;	
    font-weight: normal;
}

/* Content ================================================================================= */


.wrapper {
	display: flex;

	justify-content: center;
	
    align-items: center;    
    
    height: 99vh;
}
.column {
	min-height: 250px;
}
.logo-site {
	max-height: 47px;
}
.visible-xs {
	display: none;
}
.texto-error {
	font-size: 0.7em;
	color: #555;
	line-height: 1.3em;
	text-transform: uppercase;
}


@media (max-width: 460px) {
	.visible-xs {
		display: block;
	}
}
@media (max-width: 640px) {
	body {
		font-size: 11px;
	}
	.texto-error {
		font-size: 0.9em;
	}
	.logo-site { 
		max-height:40px;	
	}
}

@media (min-width: 640px) and (max-width: 1200px) {
		body { 
			font-size: 15px; 
		}
}
