<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Alert Styles */
.submit {
	background-color: transparent;
	width: 303px;
}
/* END OF ~ Global Alert Styles */


/* Signup.php Styles */
.alerts-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.signup-option {
	width: 100%;
	border-radius: 12px;
}

.signup-option a {
	width: 100%;
    max-width: 283px;
    height: 100%;
    max-height: 160px;
	text-align: center;
	display: block;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
	.signup-option a:hover,
	.signup-option a:focus {
		transform: translateY(-7px);
	}	

.signup-app-downloads a {
	width: 100%;
	max-width: 260px;
	height: 100%;
	max-height: 80px;
	display: block;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
	.signup-app-downloads a:hover,
	.signup-app-downloads a:focus {
		transform: translateY(-7px);
	}

.signup-image {
	display: block;
}

.signup-text {
	display: flex; /* set to display flex to show text */
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
    min-width: 283px;
    height: 100%;
	min-height: 125px;
	background-color: transparent;
	border-radius: 12px;
	border:1px solid #000;
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
	.signup-options-container {
		display: flex;
		flex-direction: row;
	}
}


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
	.alerts-container {
		flex-direction: row;
		justify-content: center;
	}
}
/* END OF ~ Signup.php Styles */





/* Lookup.php Styles */
#lookup .signup-options-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#lookup .signup-option {
	width: unset;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
	#lookup .signup-options-container {
		flex-direction: row;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
	.lookup-text {
		width: 30%;
	}
	
	.lookup-email {
		width: 50%;
	}
	
	.lookup-alerts {
		width: 50%;
	}
}
/* END OF ~ Lookup.php Styles */</pre></body></html>