/* horizontal line on signin.php */
p.newto {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

p.newto:before,
p.newto:after {
    content: '';
    border-top: 1px solid;
	border-top-color: lightgray;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
}

p.newto:after {
    margin: 0 0 0 20px;
}
/* end horizontal line on signin.php */

.has-float-label {
    position: relative;
	 /* margin-bottom: 1rem; */
}
.has-float-label label {
    position: absolute;
    cursor: text;
    font-size: 75%;
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
    top: -.9em;
    left: .75rem;
    z-index: 3;
    line-height: 1;
    padding: 0 1px;
}
.has-float-label label::after {
    content: " ";
    display: block;
    position: absolute;
    background: #fff;
    height: 2px;
    top: 50%;
    left: -.2em;
    right: -.2em;
    z-index: -1;
		color: #67696A;

}
.has-float-label .form-control::-webkit-input-placeholder {
opacity:1;
-webkit-transition:all .2s;
transition:all .2s;
}
.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
opacity:0
}
.has-float-label .form-control:placeholder-shown:not(:focus)+label {
font-size:110%;
opacity:.9;
	vertical-align: middle;
			color: #67696A;

}
.input-group .has-float-label {
    display: table-cell
}
.input-group .has-float-label .form-control {
    border-radius: .25rem
}
.input-group .has-float-label:not(:last-child) .form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}
.input-group .has-float-label:not(:first-child) .form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -1px
}
.col-form-label {
		/*  margin-bottom: 1rem; */

}
select, textarea, input { 
			  margin-bottom: 1rem;

}