html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* reset para navegadores mais antigos */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

/* FIM RESET CSS */


:root {
    --corCinzaEscuroS1: #151515;
	--corCinzaEscuroS2: #383838;	
    --corRosa: #F85CE6;
    --corBranco: #ffffff;
	--corPreto: #000000;
}
/* FIM VAR */





* { box-sizing:border-box; }

body,
html {	
    min-width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    font-family: 'Montserrat', sans-serif;
	  /* background: #222; */
    background: #222;
}

.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1100px;
	width: 90%;
}

.container:before,
.container:after {
  /*content: '.';*/
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.container:after {
  clear: both;
}

.container {
  zoom: 1;
}

input,
textarea,
select {font-family: 'Montserrat', sans-serif; appearance: none; background: #fff;}

input:focus {outline:none;}
select:focus{outline:none;}
textarea:focus {outline:none;}
textarea {resize:none;}
label {display:block;}

.erro,
.sucesso {
	width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 5px; 
    font-size: 16px;
	margin-bottom: 25px;
}

.erro {
    color: var(--corBranco);
    background: #e85347; 
}
.sucesso {
    color: var(--corBranco);
    background: #3e9278;
}

.alignCenter {
	text-align: center;
}

