.modal-container {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
}

.modal {
	width: 250px;
	position: relative;
	background-color: gainsboro;
	padding: 20px;
	border-radius: 15px;
}

.modal span {
	position: absolute;
	top: 5px;
	right: 10px;
	cursor: pointer;
}

form {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
