.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    background: url(../img/modal-bck.webp) center;
    background-size: cover;
    border-radius: 10px;
    overflow-y: auto;

}

.modal__header {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.modal__close {
    cursor: pointer;
    margin-top: 10px;
}

.modal-title {
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    color: #fff;
    text-shadow: 2px 0px 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.modal h3 {
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.modal form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    gap: 10px;
    background: rgba(36, 37, 41, 0.9);
    border: 0.5px solid #F8B324;
    border-radius: 10px;
}

.modal form .input-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 20px 26px;
    gap: 10px;
    background: #242529;
    border: 1px solid #37393D;
    border-radius: 5px;
    color: #ffffffeb;
}

.modal form .input-text__label {
    color: #fff;
    padding-left: 25px;
}

.modal form .input-textarea__label {
    top: 22%;
}

@media only screen and (max-height : 620px) {
    .modal__content {
        height: 100%;
    }
}

@media only screen and (max-width : 768px) {}

@media only screen and (max-width : 576px) {
    .modal-title {
        font-size: 18px;
    }

    .modal h3 {
        font-size: 18px;
    }

    .modal__content {
        padding: 10px;
    }
}

@media only screen and (max-width : 374px) {}