
/* contact.php */
	/* ADJUST CAPTCHA WIDTH IN CONTACT FORM */	
	/* Custom width on medium devices and larger */
	@media (min-width: 768px) { /* Adjust 768px based on the desired breakpoint */
		.w-md-75 {
			width: 60% !important;
		}
	}
	/* You can also define widths for smaller devices if needed */
	@media (max-width: 767.98px) {
		.w-md-75 {
			width: 75% !important; /* Full width on small devices, for example */
		}
	}


/* register.php */
	/* fix a weird breaking issue with the postal code label when resizing screens. */
	.zip-form-label {
		white-space: nowrap;
	}
	/* make the red word 'required' a little smaller */
	.required {
		font-size:0.9em;
	}
	/* experiment with using a fa asterisk icon instead of the word 'required' */	


/* register.php */
	/* Below styles add a little triangle to the right side of the input to indicate (country) dropdown functionality. */
	.add-select-dropdown-icon {
		position: relative;
		display: inline-block;
		width: 100%;
	}
	.add-select-dropdown-icon input.form-control {
		padding-right: 30px; /* Adjust padding to ensure text does not overlap the caret */
	}
	.add-select-dropdown-icon::after {
		content: "▼"; /* Upside-down triangle */
		position: absolute;
		right: 10px; /* Adjust based on padding and desired positioning */
		top: 50%;
		transform: translateY(-50%);
		pointer-events: none; /* Prevents the caret from interfering with input */
	}

