.field {
    
    position: relative;
}

.field input {
    display: inline;
    width: 100px;
    padding: 0.75rem 2.5rem 0.75rem 0.75rem; /* space for button */
    font-size: 1rem;
    height: 30px;
}

.field button {
    position: relative;
    top: 3px;
    right: 2px;
    /* top: 14px; */
    background: rgb(169, 169, 252);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    height: 30px;
    

}

.title-form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.item-left img{
    display: none;
    width : 230px;
}

.item-center {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    img {
        opacity: 0.4;
        cursor: pointer;
        &:hover {
            opacity: 1;
        }
    }
}

.fest-name {
    color: blue;
    font-size: 1.2em;
}


@media (min-width: 769px) {
    .item-left img{
        display: inline;
    }
}