

  .bg-gray.py-5 {
	position: relative;
	overflow: hidden;
  }

  /* Overlay */
  .zip-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	color: #fff;
  }

  /* Form Styling */
  .zip-form {
	display: flex;
	gap: 10px;
	align-items: center;
  }

  .zip-form input {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	width: 250px;
  }

  .zip-form button {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	background-color: #104060;
	color: white;
	cursor: pointer;
  }

  .zip-form button:hover {
	background-color: #447cbf;
  }

  /* Error Messages */
  .error-message {
	margin-top: 20px;
	color: #ffff;
	font-size: 18px;
	text-shadow: 1px 1px black;
	padding: 0 20px;
	text-align: center;
  }
  .error-message a{color: #ffff; font-weight:bold; text-decoration:underline;}

