/*modal*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    background: transparent;
}
.modal::backdrop{
    background: rgba(0, 0, 0, .55);
}
.modal_container{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
}
.modal_text{
    width: 35%;
    position: relative;
    margin-top: -7%;
    background: #f6f6f6;
    border-radius: 20px;
    padding: 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal_text h3{
    text-align: center;
    font-weight: 500;
}
.modal_text form{
    margin: 0;
    height: auto;
}
.icon_close{
    position: absolute;
    top: 13%;
    right: 31%;
    color: white;
    font-size: 2rem;
}
input#btn-blog-modal.btn_form{
    background: transparent;
    color: white;
}

@media screen and (max-width: 780px){
    .modal_text {
        width: 50%;
        position: relative;
        margin-top: -14%;
    }
    .modal_text p{
        width: 100%;
    }
    .icon_close {
        position: absolute;
        top: 13%;
        right: 13%;
    }
}
@media screen and (max-width: 620px){
    .modal_text {
        width: 90%;
        position: relative;
        margin-top: -27%;
    }
    .modal_text p{
        width: 100%;
    }
    .icon_close {
        position: absolute;
        top: 13%;
        right: 13%;
    }
}