.besedka-form {
    border-radius: 25px;
    padding:43px 53px 48px 47px;
    background: url(./img/besedka.png) no-repeat;
    background-size: cover;
    margin-bottom:20px
}
.besedka-header {
    font-weight: 600;
    font-size: 38px;
    line-height: 94%;
    margin-bottom: 10px;
    color:#fff
}
.besedka-prompt {
    font-weight: 400;
    font-size: 17px;
    line-height: 126%;
    color:#fff;
    margin-bottom:25px;
}
.besedka-icons {
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:25px;
    color:#fff
}
.besedka-icons > div {
    display:grid;
    grid-template-columns: 36px max-content;
    gap:10px;
    align-items: center;
    font-weight: 400;
    font-size: 17px;
    line-height: 126%;
}
.besedka-fields {
    display:grid;
    grid-template-columns: 176px 176px auto;
    gap:25px;
    margin-bottom:25px
}
.besedka-fields label {
    display:grid;
    grid-template-columns: 1fr;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    gap:8px;
    color:#fff
}
.besedka-fields label input, .besedka-fields .selectize-control.single .selectize-input {
    border:none;
    background: #fff;
    border-radius: 10px;
    color:#242424;
    font-weight: 400;
    font-size: 16px;
    padding:17px;
    width: 100%;
}
.besedka-fields input::placeholder {
    color:#242424;
}
.besedka-fields .selectize-dropdown [data-selectable].option {
    font-weight: 400;
    font-size: 16px;
    margin-bottom:5px
}
.besedka-fields label:nth-child(4) {
    grid-column: 1/3;
}

@media (max-width:1200px) {
    .besedka-form {
        padding:20px 15px;
        border-radius: 15px;
        background: url(./img/besedka.png) no-repeat 30%;
    }
    .besedka-header {
        font-size: 24px;
    }
    .besedka-prompt {
        font-size: 17px;
    }
    .besedka-icons {
        grid-template-columns: 1fr;
        gap:10px
    }
    .besedka-fields {
        grid-template-columns: 1fr 1fr;
        gap:15px
    }
    .besedka-fields label:nth-child(3),
    .besedka-fields label:nth-child(4),
    .besedka-fields label:nth-child(5) {
        grid-column: 1/3;
    }
    .besedka-form > a{
        width:100%;
    }
}