/* 모달 배경 */
.modal-wrapper {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-wrapper > div.modal-content {
    width: auto;
    height: auto;
    min-width: 300px;
    min-height: 100px;
    border-radius: 22px;
    background-color: #fff;
    padding: 52px 42px;
    display: none;
}

.modal-wrapper > div.modal-content > form.modal-form > h1 {
	color: #333;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 42px;
}