.floating-label-wrapper {
    position: relative;
}

.floating-label-wrapper label.floating-label {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 16px;
    line-height: 16px;
    transition: all 0.35s ease;
    user-select: none;
}

.floating-label-wrapper label.floating-label:has(+ input:focus),
.floating-label-wrapper label.floating-label:has(+ input:not(:placeholder-shown)) {
    transform: translateY(-100%);
    font-size: 10px;
    line-height: 16px;
}