.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;
}

.modalContainer {
	width: 290px;
	background: #fff;
	border-radius: 5px;
	box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.modalHeader {
	width: 100%;
	padding: 20px;
	background: #6096bf;
	font-weight: 600;
	color: #fff;
	border-radius: 5px 5px 0 0;
}

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

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

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

.modalFormField i.fieldIcon {
	position: absolute;
	top: 25px;
	transform: translateY(-50%);
	left: 15px;
	font-size: 18px;
	color: #8b8b8b;
}

.modalFormButton {
	width: 100%;
}

.modalFormButton button {
	width: 100%;
	height: 50px;
	background: #647d8f;
	border-radius: 5px;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: 16px;
	color: #fff;
	padding: 0 20px;
}

.modalFormButton button i {
	margin-right: 6px;
}

.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;
}

.modalFooter {
	width: 100%;
	padding: 20px;
	font-size: 14px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modalFooter a {
	color: #6096bf;
}

.modalFooter a i {
	margin-right: 5px;
}