/* html,
body {
	height: 100%;
	background-image: linear-gradient(to right, #0acffe 0%, #495aff 100%);
  	background-image: url("/resources/images/bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

body {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
} */

.steps{
	list-style: none;
	display: flex;
	z-index: 2;
}

.steps li{
	text-align: center;
	width: 200px;
	position: relative;
	color: #777777;
	font-weight: 500;
}

.steps li:before{
	font-size: 20px;
	line-height: 44px;
	width: 50px;
	height: 50px;
	display: block;
	border-radius: 100%;
	border: 2px solid #777777;
	margin: 0 auto 15px auto;
	background: #777777;
}

.steps li:after{
	content: '';
	width: 100%;
	height: 2px;
	background: #777777;
	display: block;
	position: absolute;
	top: 25.5px;
	left: 50%;
	z-index: -1;
}

.steps li:nth-child(2):before{
	content: "\f007";
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	color: #ffffff;
}

.steps li:last-child:after {
  content: none;
}

.steps li:nth-child(1):before{
	content: "\f084";
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
}
.steps li:nth-child(1).process:after{
	content: '';
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #007bff 50%, #DDD 50%);
	display: block;
	position: absolute;
	top: 25.5px;
	left: 50%;
	z-index: -1;
}
.steps li:nth-child(1).active:first-child:before {
	content: "\f00c";
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900; 
	color: #ffffff;
	background: #8cc413; 
	border-color: #8cc413; 
}

.steps li.process {
	color: #007bff;
}
.steps li.active {
	color: #8cc413;
}

.steps li.process:before {
	color: #ffffff;
	background: #007bff;
}

.steps li.process:before {
	border-color: #007bff;  
}

.steps li.active:first-child:after {
	background: #8cc413;  
}

/* telas de Nova conta */

.novaConta ::-webkit-input-placeholder{
    font-size: 15px;
}

.novaConta2 h2, .novaConta2 h4, .novaConta h4{
	color: #777777;
	font-size: 25px;
	font-weight: 500;
}

.novaConta2 label, .novaConta label{
	color: #777777;
	margin: 5px 0;
    font-weight: 500;
    font-size: 13px;
}

.novaConta p{
	color: #777777;
	margin: 5px 5px;
    font-weight: 500;
    font-size: 15px;
}

.novaConta p strong{
	color: black;
	margin: 5px 5px;
    font-weight: 500;
    font-size: 15px;
}

.novaConta2 .check label{
	margin: 0 5px 0 15px;
	font-size: 16px;
}

.novaConta2 .ui-panel-content.ui-widget-content{
	padding: 0 !important;
}

/* Alinhamento do CheckBox */
.ui-chkbox{
	display: flex !important;
	align-items: center !important;
}

.form-control:focus {
	box-shadow: inherit;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 	
	.steps{
		flex-direction: column;
	}
	
	.steps li{
		text-align: inherit;
		width: inherit;
	}
	.steps li:nth-child(1){
		height: 90px;
	}
	
	.steps li:before{
		display: inline-block;
		text-align: center;
	    margin: 0 10px;
	}
	
	.steps li:nth-child(1).process:after{
    	width: 2px;
	    height: 100%;
	    background: linear-gradient( #007bff 50%, #DDD 50%);
	}
	
	.steps li:nth-child(1).process:after{
		left: 17%;
	}
	
	.steps li.active:first-child.active:after{
    	width: 2px;
	    height: 100%;
	    background: #8cc413;
		left: 17%;
	}
}