.floating-label-text {
    font-size: 12.5px;
    color: #000;
    opacity: .8;
    font-weight: 400;
}

.floating-label {
    position: relative;
    margin-bottom: 10px;

    label {
        position: absolute;
        top: calc(50% - 7px);
        left: 0;
        opacity: 0;
        transition: all .3s ease;
    }

    input:not(:placeholder-shown)+label {
        transform: translateY(-35px);
        opacity: .7;
    }
}