html{
	font-family: Arial, sans-serif;
	font-size:14px;
	color:#000;
	text-align:left;
}
html,body{
	margin:0;
	padding: 0;
	width:100%;
	height:100%;
}
body{
	background-image:url(../img/bg.jpg);
	background-repeat:repeat;
	background-color:#FEFEFE;
}
body.login{
	background-image:url(../img/bg-invertido.jpg);	
}



/*

	LOGIN

*/

.corpo{
  width: 100%;
  height:100%;
  display:flex;
  flex-wrap:wrap;
  align-content: flex-start;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  box-sizing:border-box;
}

.admin{
	display: flex;
    width: 100%;
    height: 30px;
    margin-bottom: -30px;
    background: rgba(0,0,0,0.06);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2), 0 2px 0 #fff;
    position:relative;
    z-index: 99;
}
.admin .corpo{
	justify-content: flex-end;
}
.admin a{
	color:rgba(0,0,0,0.3);
	padding:9px 18px;
	font-size:11px;
	text-transform: uppercase;
	font-weight:bold;
	text-decoration:none;
}
.admin a:hover{
	color:rgba(0,0,0,0.4);
}

.corpo-esquerda, .corpo-direita, .corpo-login{
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height:auto;
}
.corpo-esquerda img{
	width:100%;
	height:100%;
	max-width:280px;
	max-height:280px;
	margin:50px auto 15px;
}

.corpo-formulario{
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: flex-start;
	animation: formulario1 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) 1s forwards;
	opacity: 0;
	transform: translate(0px,-100px);
}

@keyframes formulario1{
	0% {opacity: 0; transform: translate(0px,-100px);}
	100% {opacity: 1; transform: translate(0px,0px);}
}

@media (min-width: 576px) {
  .corpo {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
	.corpo {
		max-width: 720px;
	}
	.corpo-esquerda, .corpo-direita{
		width: 50%;
		height:100%;
	}
	.corpo-esquerda img{
		margin: auto;
		max-width:320px;
		max-height:320px;
	}
	.corpo-formulario{
		animation: formulario2 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) 1s forwards;
		transform: translate(-100px,0px);
	}
	@keyframes formulario2{
		0% {opacity: 0; transform: translate(-100px,0px);}
		100% {opacity: 1; transform: translate(0px,0px);}
	}
}
@media (min-width: 992px) {
  .corpo {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .corpo {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .corpo {
    max-width: 1320px;
  }
}

.corpo-esquerda .wrap-logo{
	display: flex;
	height:100%;
}
.corpo-esquerda .wrap-logo a{
	margin:auto;
}
.corpo-esquerda img{
	opacity:0;
	transform:scale(.2);
	animation: logo 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) 1s forwards;
}

@keyframes logo{
	0% {opacity: 0;transform:scale(.2);}
	100% {opacity: 1;transform:scale(1); }
}

.corpo-login{
	background-image:url(../img/adepol-big.png);	
	background-repeat:no-repeat;
	background-position: center; 
	height:100%;
	animation: corpo_login 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) 1s forwards;
	opacity: 0;
	transform: scale(.6);
}
@keyframes corpo_login{
	0% {opacity: 0; transform: scale(.6);}
	100% {opacity: 1; transform: scale(1);}
}
.corpo-login form{
	max-width:320px;
	margin:auto;
}
.corpo-login .corpo-formulario{
	animation: formulario_login 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) 1s forwards;
	opacity: 0;
	transform: translate(0px,-100px);
}

@keyframes formulario_login{
	0% {opacity: 0; transform: translate(0px,-100px);}
	100% {opacity: 1; transform: translate(0px,0px);}
}




.corpo-formulario form{
	width:100%
}
.corpo-formulario fieldset{
	border:none;
	padding:0;
	margin:auto;
}
.corpo-formulario label{
	display:block;
}

.corpo-formulario input[type=text],.corpo-formulario input[type=password]{
	margin-bottom: 10px;
    width: 100%;
    padding: 0;
    height: 36px;
    padding-left: 32px;
    box-sizing: border-box;
    border-radius: 4px;
    line-height: 36px;
    border: 1px solid rgba(0,0,0,.35);
}
.corpo-login .corpo-formulario input[type=text],.corpo-login .corpo-formulario input[type=password]{
	border: 1px solid rgba(255 255 255 / 30%);
	background-color: rgba(255 255 255 / 20%);
	color: #FFF;
}

.corpo-formulario i.material-icons, .corpo-botao i.material-icons{
	vertical-align: middle;
	margin: 6px 0 0 5px;
    z-index: 99;
    position: absolute;
}
.corpo-login .corpo-formulario i.material-icons{
	color:#FFF;
}

.corpo-botao button{
	margin: 15px auto 30px;
    width: 100%;
    height: 35px;
    text-align: center;
    position: relative;
    background: rgb(22 143 201);
    color: #FFF;
    border: 0;
    box-shadow: 0 4px 0 #0b445f;
    border-bottom: 1px solid #36beff;
    border-radius: 4px;
    cursor: pointer;
}
.corpo-botao button:hover{
	background: rgb(40 159 216);
}
.corpo-botao button:active{
	box-shadow:none;
	top:4px;
}
.corpo-botao i.material-icons{
	margin: -5px 0 0 -30px;
	color:#FFF;
}
.corpo-login .corpo-botao button{
	background: #e0e0e0;
	color:#000;
	box-shadow: 0 4px 0 #999;
	border-bottom: 1px solid #EEE;
}
.corpo-login .corpo-botao i.material-icons{
	color:#000;
}
.corpo-login .corpo-botao button:hover{
	background:#F0F0F0; 
}
.corpo-login .corpo-botao button:active{
	box-shadow:none;
	top:4px;
}


#msg{
	width:100%;
	padding:10px;
	box-sizing: border-box;
	border-radius:4px;
	margin:20px 0;
}
#msg.erro {
	color: rgba(100,0,0,1);
    background: rgba(255,0,0,0.15);
    box-sizing: border-box;
    border: 1px solid rgba(100,0,0,0.15);
}

#msg.sucesso{
	color: rgba(0,100,0,1);
    background: rgba(0,255,0,0.15);
    box-sizing: border-box;
    border: 1px solid rgba(0,100,0,0.15);
}

#cedula .logo{
	display: block;
	padding-left: 0px;
	margin: 0px;
	width: 15%;
	height: auto;
}

#cedula{
	border: 1px solid #AB7D43;
    background: linear-gradient(135deg, #CA924B, #F1CF73,#CA924B);
    margin: 30px auto 15px;
    padding: 10px;
    border-radius: 4px;
    position:relative;
}
#cedula img{
	width:60px;
	height: auto;
	position: absolute;
	right: -30px;
	top:-20px;
}

#cedula h2{
	margin-top: 5px;
    color: #000;
    text-shadow: 0 2px 2px rgba(255,255,255,0.8);
}
#cedula .opcoes{
	display: inline-block;
	width:100%;
	box-sizing: border-box;
	overflow:hidden;
}
#cedula .opcoes input[type=radio]{
	width: 30px;
    margin: 0;
    height: 30px;
    margin-right: 5px;
    display: inline-block;
    float: left;
    position:absolute;
    opacity:0;
    cursor: pointer;
}
#cedula .opcoes label{
	display: block;
	color:#000;
	text-shadow: 0 1px 0 rgb(255 255 255 / 75%);
    width: 100%;
    text-align: left;
    vertical-align: middle;
    line-height: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 1px 0 rgb(255 255 255 / 25%);
    padding: 10px 0 10px 35px;
    font-size: 18px;
    position:relative;
    cursor:pointer;
}

#cedula .opcoes label .checkmark {
  position: absolute;
  top: 10px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #FFF;
  border: 2px solid rgba(0,0,0,.75);
  border-radius: 50%;
}

#cedula .opcoes label:hover input ~ .checkmark {
  background-color: #ccc;
}

#cedula .opcoes label input:checked ~ .checkmark {
  background-color: #F00;
}

#cedula .opcoes label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

#cedula .opcoes label input:checked ~ .checkmark:after {
  display: block;
}

#cedula .opcoes label .checkmark:after {
 	top: 8px;
	left: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: white;
}

#cedula .opcoes label:last-child{
    border-bottom: 0;
    box-shadow: none;
}