.modalBackground {
    display: none;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    cursor: pointer;
    /* указываем z-индекс для корректного наслаивания */
    z-index: 1;
}



.modalClose {
    font-family: var(--font-regular);
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* сама картинка кнопочки закрытия */
.modalClose img {
    margin: 3px;
    width: 24px;
    height: 24px;
}

.modalWindow button {
    background: linear-gradient(to right, #2A6478,   #00BFFF);
    padding: 10px;
    background: linear-gradient(to right, #2A6478,   #00BFFF);
    border:none;
    color: white;
}

.modalWindow {
    position: relative;
}

input {
    padding: 8px;
    border: 0.5px solid  #E5E4E2;
}