.elementor-field-group {
    position: relative;
}

/* Ajusta el label para que viva dentro del input */
.elementor-field-group .elementor-field-label {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 15px;
    color: #c68008; /* Tu color */
    pointer-events: none;
    transition: all 0.25s ease;
    background: transparent;
    z-index: 2;
}

/* Input */
.elementor-field-group .elementor-field {
    padding-top: 24px;
    position: relative;
    z-index: 1;
}

.elementor-field-group > .elementor-select-wrapper {
    padding-top: 0;
}

.elementor-field-group > .elementor-select-wrapper > .elementor-field-textual {
    font-size: 14px;
    line-height: 17px;
    padding: 24px 12px 12px 12px;
}

/* Cuando el input está en foco o contiene texto */
.elementor-field-group:focus-within .elementor-field-label {
    color: #c68008; /* mantiene tu color */
}

.elementor-field-group:focus-within .elementor-field-label,
.elementor-field-group.filled .elementor-field-label {
    top: 0;
    left: 10px;
    font-size: 12px!important;
    padding: 0 6px;
}