/* Modal overlay */
.custom-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 9999;
}

/* Modal content box */
.custom-modal-content {
	background: #fff;
	width: 90%;
	max-width: 500px;
	margin: 8% auto;
	padding: 25px;
	border-radius: 12px;
	position: relative;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Close icon */
.custom-close {
	position: absolute;
	top: 12px;
	right: 18px;
	font-size: 24px;
	color: #333;
	cursor: pointer;
	transition: color 0.3s;
}
.custom-close:hover {
	color: #ff4b4b;
}

/* Modal heading */
.custom-modal-title {
	text-align: center;
	font-size: 20px;
	color: #222;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
}

/* Form */
.custom-form-group {
	margin-bottom: 15px;
}

.custom-form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	color: #444;
}

.custom-input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 15px;
	background-color: #fafafa;
	transition: border-color 0.3s, background-color 0.3s;
}

.custom-input:focus {
	border-color: #007bff;
	background-color: #fff;
	outline: none;
}

/* Submit button */
.custom-submit-btn {
	display: block;
	width: 100%;
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 12px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	text-transform: uppercase;
	transition: background-color 0.3s;
}

.custom-submit-btn:hover {
	background-color: #0056b3;
}
