/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
:root {
            --color-primary: #d4af37;
}			

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;
}
/* HTML5 display-role reset for older browsers */
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;
}

.error{
	Color:#e77a85;
	padding-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1rem;
}
.login-error{
	padding-left: 10px;
}

.success{
	Color:#228B22;
	padding-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1rem;
}

.dev{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	color: red;
    text-align: center;
}
#dev{
	display: flex;
	align-items: center;
	flex-direction: column;
	
}
#dev img{
    width:50%;
}


/* Container do Spinner*/
.containerSearch{
	position: relative;
	width:100%;
	max-width: 400px;
	margin:0 auto;
}
.spinnerSearch{
	display:none;
	position:absolute;
	right:10px;
	top:50%;
	transform: translateY(-50%);
}
/* Estilos para o spinner de carregamento, checklist-inputCPF, checklist-inputPlaca, checklist-inputChassi */
.spinner-bor {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: .25em solid currentColor;
  border-right-color: transparent; /* Cria a falha no círculo para parecer que gira */
  border-radius: 50%;
  animation: spinner-bor .75s linear infinite; /* A mágica do giro */
}

@keyframes spinner-bor {
  to { transform: rotate(360deg); }
}

.spinner-bor-sm {
  width: 1rem;       /* Reduzido de 2rem */
  height: 1rem;      /* Reduzido de 2rem */
  border-width: .2em; /* Opcional: deixa a linha mais fina */
 
}


/*
#dev{
    background-image: url("{{ asset('assets/img/dev.gif') }}");
    background-size: cover; /* A imagem cobre todo o fundo */
    /* background-position: center; /* Centraliza a imagem */
    /* background-repeat: no-repeat; /* Não repete a imagem */
    /*background-attachment: fixed; /* Opcional: imagem fixa ao rolar a página */
/*}*/

