.modal__form {
    margin-bottom: 1.2rem;
}

.modal__form h3 {
    margin: 0;
    font-size: 1rem;
    color: #c9c9c9;
}


.modal__form-wrapper{
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;

}


.modal {
    position: fixed; inset: 0; z-index: 2000;
    display: grid; place-items: center;
    background: rgba(0,0,0,.5);
    transition: opacity .2s ease;
    opacity: 1; visibility: visible;
}

.modal textarea {
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    background-color: transparent;
    border: 1px solid #7f7f7f;
    font-size: 15px;
    line-height: 18px;
    padding: 5px !important;
    color: #ffffff;
    outline: none;
}
.modal__body { 
    width: 100%; 
    max-width: 375px; 
    padding: 50px 45px; 
    background-color: rgba(51, 51, 51, 1);
    border: 2px solid #b3b3b3;
    position: relative;
}
.modal_hidden {
    visibility: hidden;
    opacity: 0;
}

.modal__btn-close {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    background: linear-gradient(#cc2f2a, #8a1e1b);
    width: 30px;
    height: 30px;
    font-size: 15px;
}