input {
        border: 1px #454445 solid;
}

input[type="password"]
{
        width: 188px;
}

.success, .failure {
    border:0px solid;
    margin:10px 0px;
    padding:15px 10px 15px 10px;
    background-repeat:no-repeat;
    background-position:10px center;
}
.success {
    color:#4F8A10;
    background-color:#DFF2BF;
}
.failure {
    color:#D8000C;
    background-color:#FFBABA;
}

/* step indicator */
.step-indicator {
	counter-reset: step;
	width:100%;
	margin-bottom: 1em;
}
.step-indicator span {
	list-style: none;
	display: inline-block;
	position: relative;
	text-align: center;
	width: 100px;
        padding-bottom: 1em;
}
.step-indicator span:before {
	content: counter(step);
	counter-increment: step;
	width: 30px;
	height: 30px;
	line-height : 30px;
	border: 1px solid #ddd;
	border-radius: 100%;
	display: block;
	text-align: center;
	margin: 0 auto 10px auto;
	background-color: #fff;
}
.step-indicator span:first-child:after {
	content:none
}
.step-indicator span.completed {
	color: green;
}
.step-indicator span.completed:before {
	border-color: green
}
