.ld-form{
	position: fixed;
	left: -9999px;
}
.ld-modal {
	background: rgba(0, 0, 0, 0.91);
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;

	justify-content: center;
	align-items: center;
	display: none;
}
.ld-modal.active {
	display: flex;
}
.ld-modal .ld-modal-content {
	max-width: 300px;
	background: #ffffff;
	padding: 40px;
	align-items: center;
	border-radius: 3px;
	position: relative;
}
.ld-modal .ld-modal-close {
    padding: 0;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 10px;
    color: #000;
    background: none;
    border: none;
    outline: none;
}
.ld-modal .ld-modal-content h4{
	margin: 0 0 13px;
	line-height: 1;
}
.ld-modal .ld-modal-content  form{
		display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.ld-modal .ld-modal-content input {
	margin: 0;
}