.modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #00000026;
    z-index: 999;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    padding: 5vw 0;
    align-items: flex-start;
    overflow: auto;
}

.modal-body {
    background-color: var(--white);
    width: 100%;
    max-width: max-content;
    border-radius: 20px;
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
    padding: 30px;
    overflow: auto;
}

.modal-body.md {
    max-width: 960px;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

button.close-modal {
    font-size: 30px;
    line-height: 100%;
}

.modal-header h2 {
    font-size: 20px;
}