



/**
 * login box
 */
.login-box h2 {
	position: relative;
	max-width: 320px;
	margin: 0 auto;
	margin-top: 150px;;
}
.login-box h2::before {
	content: 'beta';
	display: block;
	position: absolute;
	color: #ea2a4a;
	font-size: 16px;
	top: 19px;
	right: 0;
}
.description {
	line-height: 18px;
	font-weight: 400;
	margin-top: 20px;;
}

.input-group .form-control {
	padding: 0 20px;
}

/**
 * modal
 */
#modalCadastro .termos {
	
}

/**
 * upload
 */
.loading + .label-select-image {
	display: none;
}

.form-input-file-image {
	text-align: center;
	margin-top: 0px;
}
.label-file-image {
	width: 150px;
	height: 150px;
	overflow: hidden;
	background: #ebeff2;
	border-radius: 50%;
	margin: 0 auto;
	display: block;
	position: relative;
	cursor: pointer;
	transition: all .25s ease-in-out;
}
.label-file-image span {
	display: block;
	padding: 60px 50px;
	line-height: 16px;
	color: #585858;
	font-size: 13px;
	position: relative;
	z-index: 3;
	transition: all .25s ease-in-out;
}
.form-input-file-image input {
	display: none;
	font-size: 14px;
}

.label-file-image img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .25s ease-in-out;
  }

.label-file-image img + span {
	opacity: 0;
	color: #000;
  }


.label-file-image:hover {
	background: #e1e3e4;
}
.label-file-image:hover img {
	opacity: 0.5;
}
.label-file-image:hover span {
	opacity: 1;
}