.floating-label {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.floating-label input {
    font-size: 16px;
    background: #111;
    color: #fff;
    border: 1px solid #333;
    text-transform: uppercase;
    text-align: left;
}

.floating-label label {
    position: absolute;
    left: 12px;
    top: 16px;
    color: #666;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s ease all;
}

/* Fokus = label nahoru + zmenšit */
.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
    top: -6px;
    left: 10px;
    font-size: 12px;
    background: #111;
    padding: 0 4px;
}

/* Trocha stylu při fokusování */
.floating-label input:focus {
    border: 1px solid var(--my-color-road-sign);
    outline: none;
}

input,
select {
    background: #111;
    color: #fff;
    border: 1px solid #333;
    padding: 15px;
    font-size: 1.2rem;
    outline: none;
    text-transform: uppercase;
}

/* Vykřičník ve floating label */
.floating-label.error::after {
    content: "!";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--my-color-road-sign);
    font-weight: bold;
    font-size: 18px;
    pointer-events: none;
}