/* Floating label — login form variant (targets label tag, not .form-label class) */
.has-float-label { position: relative; }
.has-float-label label {
    position: absolute;
    cursor: text;
    font-size: 55%;
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s;
    top: 0.5em;
    left: 12px;
    z-index: 3;
    line-height: 1;
    font-weight: 400;
    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;
}
.has-float-label .form-control::-moz-placeholder { opacity: 1; -moz-transition: all .2s; -webkit-transition: all .2s; transition: all .2s; }
.has-float-label .form-control::-webkit-input-placeholder { opacity: 1; -moz-transition: all .2s; -webkit-transition: all .2s; transition: all .2s; }
.has-float-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder { opacity: 0; }
.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: 14px;
    opacity: .8;
    top: .6em;
    font-weight: 400;
    margin: 0;
    line-height: 1.7;
}
.has-float-label .form-control { font-weight: 400; height: 38px; padding: 10px 12px 0; }

.disclaimer-basic { color: #d9534f; }

.help-block {
    min-height: 20px !important;
    padding: 5px 0;
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
    color: #d9534f !important;
}
@media only screen and (min-width: 992px) {
    .help-block { min-height: 0 !important; }
}

.login-form-fields > div { margin-bottom: 1rem; }
