.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	backdrop-filter: blur(4px);
}

.modal-container {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

.modal-content {
	background: white;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	animation: fadeIn 0.3s ease-out;
}

.modal-header {
	padding: 20px;
	/* border-bottom: 1px solid #eaeaea; */
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h3 {
	font-size: 16px;
	color: #333;
	margin: 0;
}

.modal-close-btn {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #999;
	padding: 4px;
}

.modal-close-btn:hover {
	color: #333;
}

.modal-body {
	padding: 20px;
}

.form-group {
	margin-bottom: 16px;
}

.form-group label {
	display: block;
	font-size: 12px;
	color: #666;
	margin-bottom: 8px;
}

.form-group input[type="tel"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.2s;
}

.form-group input[type="tel"]:focus {
	outline: none;
	border-color: #409eff;
	box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.1);
}

.error-message {
	color: #f44336;
	font-size: 12px;
	margin-top: 4px;
	display: none;
}

.btn-submit {
	width: 100%;
	padding: 12px 0;
	background: linear-gradient(135deg, #409eff, #007bff);
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-submit:hover {
	background: linear-gradient(135deg, #338fff, #0066d6);
}

@media screen and (max-width: 768px) {
	.modal-container {
		width: 90%;
		max-width: 300px;
	}

	.modal-content {
		border-radius: 10px;
		height: auto;
	}

	.modal-header {
		padding: 16px;
	}

	.modal-body {
		padding: 16px;
	}

	.form-group input[type="tel"] {
		padding: 8px 10px;
	}

	.btn-submit {
		padding: 10px 0;
	}
}