body{
 	background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), color-stop(50%, #fefeff), to(#f3f4f8));
    background: linear-gradient(0deg , #ffffff 0%, #fefeff 50%, #f3f4f8 100%);
}
body:before{
    content: "";
    width: 1200px;
    height: 700px;
    display: block;
    background: url(../_images/bg/fluid-circle.svg) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 10%;
    left: -600px;
    z-index: 0;
}
.form {
	padding: 1.5rem 3rem;
	max-width: 500px;
	background-color: #fff;
}

.not-found {
	min-height: auto;
}

.login {
	padding: 2rem 0;
}

.box_login.boletos {
	max-width: 800px;
}

.box_login.boletos form {
	max-width: 100%;
}

.box_login.boletos form p {
	font-size: 0.85rem;
}

.box_login.boletos form fieldset {
	max-width: 350px;
	margin: 0 auto;
}

.form span.error{
	color: #b74444;
}

.btn-link{
	display: block;
	margin-top: 1.6rem;
	color: #00995d;
	text-decoration: underline;
	text-transform: uppercase;
	font-size: 0.8rem;
}

.btn-link:hover{
	opacity: 0.5;
	text-decoration: underline;
}

.box-btn.center{
	text-align: center;
}
.box_inner h4{
	font-size: 1rem;
}

#toast {
	visibility: hidden;
	position: fixed;
	color: #fff;
	background-color: #dc3545;
	left: 0;
	right: 0;
	bottom: 30px;
	max-width: 350px;
	font-size: 1rem;
	text-align: center;
	margin: auto;
	padding: 1rem;
	border-radius: 1rem;
	z-index: 5;
}

.loadbtn{
	width: 25px;
	margin-left: 10px;
	display: none;
}

.btn:disabled, .btn-link.disabled {
	pointer-events: none;
	opacity: 0.5;
}

#toast.success{
	background-color: #13d249;
}

#toast.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s;
	animation: fadein 0.5s;
}

#toast.hide {
	visibility: visible;
	-webkit-animation: fadeout 0.2s;
	animation: fadeout 0.2s;
}

@-webkit-keyframes fadein {
	from {bottom: 0; opacity: 0;}
	to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
	from {bottom: 0; opacity: 0;}
	to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
	from {bottom: 30px; opacity: 1;}
	to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
	from {bottom: 30px; opacity: 1;}
	to {bottom: 0; opacity: 0;}
}