.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
}

.modal.is-open {
    display: block;
}

.modal_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.modal_content {
    position: relative;
    background: #27292D;
    max-width: 420px;
    margin: 0 auto;
    transform: translateY(50%);
    padding: 25px 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.modal_close {
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 16px 29px;

}

.modal_form input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.modal_submit {
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #fff;
}

.modal_img {
    width: 220px;
    height: 220px;
}
.modal_title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}