.has-float-label {
    display: block;
    position: relative;
}
.has-float-label label,
.has-float-label > span {
    font-family: 'Roboto';
    position: absolute;
    cursor: text;
    font-size: 80%;
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    top: 0.5em;
    left: 0.75rem;
    z-index: 3;
    line-height: 1;
    padding: 0 1px;
    color: #596394 !important;
}

.is-invalid + span {
    color: #d92550  !important;  
}

.has-float-label label::after,
.has-float-label > span::after {
    content: " ";
    display: block;
    position: absolute;
    /*background: white;*/
    height: 100%;
    top: 0%;
    left: -0.2em;
    right: -0.2em;
    z-index: -1;
}

.myfilespan{
    font-family: 'Roboto';
    position: absolute;
    font-size: 90%;
    cursor: text;
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    top: 0.5em;
    left: 0.75rem;
    z-index: 3;
    line-height: 1;
    padding: 0 1px;
    color: #596394 !important;
    /*background: white;*/
}
.has-float-label .form-control::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.has-float-label .form-control::-moz-placeholder {
    opacity: 1;
    transition: all 0.2s;
}
.has-float-label .form-control:-ms-input-placeholder {
    opacity: 1;
    transition: all 0.2s;
}
.has-float-label .form-control::placeholder {
    opacity: 1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
    opacity: 0;
}
.has-float-label .form-control:placeholder-shown:not(:focus)::-moz-placeholder {
    opacity: 0;
}
.has-float-label .form-control:placeholder-shown:not(:focus):-ms-input-placeholder {
    opacity: 0;
}
.has-float-label .form-control:placeholder-shown:not(:focus)::placeholder {
    opacity: 0;
}
.has-float-label .form-control:placeholder-shown:not(:focus) + * {
    top: 1.5em;
    font-family: 'Roboto';
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #A2A9CC !important;
    opacity: 1.5;
    margin-left: 0.75rem
}

.input-group .has-float-label {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.input-group .has-float-label .form-control {
    width: 100%;
    border-radius: 0.25rem;
}
.input-group .has-float-label:not(:last-child),
.input-group .has-float-label:not(:last-child) .form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-right: 0;
}
.input-group .has-float-label:not(:first-child),
.input-group .has-float-label:not(:first-child) .form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}


.has-float-label > span{
    opacity: .65;
}




@media (min-width: 768px) {

    .largelabel .form-control:placeholder-shown:not(:focus) + * {
        letter-spacing: unset !important;
        margin-left: 0.5rem !important;
    }
}