.modal {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 100000;
	display: none;
	justify-content: center;
	align-items: center;
}
.modal.active {
	display: flex;
}
.modal .container {
	max-width: 400px;
	background-color: #fff;
	padding: 40px 20px;
	border-radius: 15px;
}

.modal__title {
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	color: #000;
}

.modal__text {
	font-weight: 400;
	font-size: 18px;
	text-align: center;
	color: #000;
	margin: 20px 0;
}

.modal__second {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #757575;
	display: inline-block;
	width: 100%;
	margin-top: 5px;
}

.modal__input {
	border: 2px solid #e4e4e4;
	border-radius: 15px;
	background-color: #fff;
	height: 40px;
	text-align: center;
	width: 100%;
	margin: 15px 0;
}

.modal__btn {
	font-weight: 500;
	font-size: 20px;
	text-align: center;
	color: #000;
	background: linear-gradient(90deg, #d1c9e9 0%, #efe9ff 100%);
	border-radius: 23px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	padding: 10px 0;
	width: 100%;
}
