.input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.input-wrapper input {
    box-sizing: border-box;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s;
    color: #5c5c5c;
    font-weight: bold;
}

.input-wrapper .label-text {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: all 0.3s;
    color: #999;
}

.input-wrapper input:focus {
    border-color: #007bff;
}

.input-wrapper input:focus + .label-text,
.input-wrapper input:not(:placeholder-shown) + .label-text {
    top: -8px;
    left: 8px;
    font-size: 16px;
    color: #5c5c5c;
    background-color: #dfdfdf;
    border-radius: 7px;
    padding: 0 7px;
}