.modal {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
	opacity: 0;
	pointer-events: none;
}

.modal.showModal {
    opacity: 1;
	pointer-events: auto;
}


.modalWrapper {
	width: 300px;
	background: #fff;
	padding: 20px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.modalHeader {
	width: 100%;
	font-size: 18px;
	font-weight: 600;
}

.modalContent {
	width: 100%;
	padding: 20px 0;
}

.modalFormField {
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}

.modalFormField input {
	width: 100%;
	height: 50px;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #c0c0c0;
	outline: none;
	font-family: inherit;
	font-size: 16px;
	color: #777;
	padding: 0 35px;
}

.modalFormField i.fieldIcon {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #8b8b8b;
	cursor: pointer;
}

.modalFormButton {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.modalFormButton button {
	flex: 1;
	width: 100%;
	height: 50px;
	background: #36474f;
	border-radius: 4px;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: 16px;
	color: #fff;
	padding: 0 15px;
}

.modalFooter {
	width: 100%;
	font-size: 14px;
	text-align: center;
}

.modalFormError {
	width: 100%;
	margin-bottom: 15px;
	background: #ffe6e6;
	border-radius: 5px;
	color: #bf6060;
	font-size: 15px;
	font-style: italic;
	padding: 20px;
	text-align: center;
}

.modalFormTrue {
	width: 100%;
	margin-bottom: 15px;
	background: #e6ffe6;
	border-radius: 5px;
	color: #72a372;
	font-size: 15px;
	font-style: italic;
	padding: 20px;
	text-align: center;
}