.form-group {
    position: relative;
    width: 100%;
}

.navbar-form .form-control {
    width: 28vw;
}

.navigation-form-container input {
    border-radius: 2rem;
    color: #000;
    outline: none;
    border: none;
}

/* Botón dentro del input */
.navigation-form-container button {
    position: absolute;
    right: 0.8rem; 
    top: 50%; 
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #19255B;
}

.navigation-form-container svg:hover{
    color: #A5843B;
}

/* Ajuste del ícono */
.navigation-form-container button svg {
    width: 1.5rem;
    height: 1.5rem;
}

.navigation-form-container button:hover svg {
    color: #000;
}

/* Placeholder */
.navigation-form-container input::placeholder {
    color: gray;
}

/* Responsividad */
@media screen and (width <= 775px) {
    .navbar-form .form-control {
      width: unset;
    }
}
@media screen and (width <= 775px) {
    .navbar-form .form-control {
        width: 90vw;
    }
}