@charset "UTF-8";


/* Form Field Container: holds each field and its title */
.form-field-container {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
	padding: 4px;
	border-radius: 5px;
}

/* Title/Label for each Field */
.form-field-title {
    font-size: 1em;
    margin-bottom: 5px;
    font-weight: bold;
	padding: 4px;
	border-radius: 5px;
}

/* The Field Itself */
.form-field {
    display: flex;
    flex-direction: row;
	border-radius: 5px;
	border-radius: 5px;
}

/* Input Styles */
.form-field input[type="text"],
.form-field input[type="password"],
.form-field input[type="tel"] {
    padding: 8px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
}

/* Checkbox Style (if needed, you can override default) */
.form-field input[type="checkbox"] {
    transform: scale(1.2);
    margin: 5px 0;
}

/* Action Button Style for clickable text (e.g., Register) */
.form-field-action {
    cursor: pointer;
    color: #007BFF;
    font-weight: bold;
    text-align: center;
    display: block;
    padding: 10px;
    border: 1px solid #007BFF;
    border-radius: 4px;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.form-field-action:hover {
    background-color: #007BFF;
    color: #fff;
}
/* Outlined Hover Button Styles */
.button-outlined {
	background: #f7f7f7;              /* starting gray background */
	color: #555;                   /* gray text */
	font-weight:700;
	border: 2px solid #555;        /* gray border */
	border-radius: 10px;
	padding: 10px 20px;
	transition: background 0.3s, color 0.3s, border-color 0.3s;
	cursor: pointer;
	position: relative;
	z-index: 0;
}
.button-outlined:hover {
  background: #777;              /* dark gray on hover */
  color: #fff;                   /* white text on hover */
}
/* When selected, the button locks to a white background with dark text */
.button-outlined.selected {
  background: #f7f7f7;
  color: #555;
  border-color: #bbb;
}

/* Outlined Hover Button Styles */
.button-outlined {
	background: #f7f7f7;              /* starting gray background */
	color: #555;                   /* gray text */
	font-weight:700;
	border: 2px solid #555;        /* gray border */
	border-radius: 10px;
	padding: 10px 20px;
	transition: background 0.3s, color 0.3s, border-color 0.3s;
	cursor: pointer;
	position: relative;
	z-index: 0;
}
.button-outlined:hover {
  background: #777;              /* dark gray on hover */
  color: #fff;                   /* white text on hover */
}
/* When selected, the button locks to a white background with dark text */
.button-outlined.selected {
  background: #f7f7f7;
  color: #555;
  border-color: #bbb;
}

.lnk_btn {
	border-radius: 50px;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 6px;
	padding-right: 6px;
	border: 1px solid #474667rgba(168,172,176,1.00);
	box-shadow: 2px,2px,3px, rgba(21,22,22,0.90);
	background: #F4F5F5; 
	-webkit-filter: drop-shadow(2px,2px,3px, rgba(21,22,22,0.90));
	filter: drop-shadow(2px,2px,3px, rgba(21,22,22,0.90));
	cursor: pointer;
}		
.lnk_btn:hover {
	border: 1px solid rgba(131,138,144,1.00);
	-webkit-filter: drop-shadow(1px,1px,2px, rgba(21,22,22,0.95));
	filter: drop-shadow(1px,1px,2px, rgba(21,22,22,0.95));
	background: #FFF; 
}
.lnk_btn_dis {
	color: rgba(119,119,119,1.00);
	border-radius: 50px;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 6px;
	padding-right: 6px;
	border: 1px solid rgba(168,172,176,1.00);
	box-shadow: 2px,2px,3px, rgba(21,22,22,0.90);
	background: #F4F5F5; 
	-webkit-filter: drop-shadow(2px,2px,3px, rgba(21,22,22,0.90));
	filter: drop-shadow(2px,2px,3px, rgba(21,22,22,0.90));
	cursor: pointer;
}		
 /* generic envelope button */
.env-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
	border-radius: 50%;
	user-select: none;
	position: relative;
	transition: transform .25s ease, background-color .25s ease;
	color: currentColor;
}

/* envelope icon (drawn with SVG, tilted slightly) */
.env-btn::before {
	content: "";
	display: inline-block;
	width: 26px;   /* ~20–30px tall max */
	height: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(-12deg); /* tilt */
	background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'>\
<rect x='3' y='5' width='18' height='14' rx='2' ry='2'/>\
<polyline points='3,7 12,13 21,7'/>\
</svg>");
}

/* hover/focus */
.env-btn:hover { background: rgba(0,0,0,.06); transform: translateY(-1px); }
.env-btn:active { transform: translateY(0) scale(.96); background: rgba(0,0,0,.1); }

@media (prefers-color-scheme: dark) {
	.env-btn { color: #f0f0f0; }
	.env-btn:hover { background: rgba(255,255,255,.08); }
}

/* square-tooth, thin-outline gear */
.cog-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:40px;height:40px;
	cursor:pointer;border-radius:50%;
	user-select:none;
	transition:transform .2s ease, background-color .2s ease;
	color:#222; /* off-black stroke */
}

.cog-btn::before{
	content:"";
	display:inline-block;
	width:22px;
	height:22px;
	background-repeat:no-repeat;
	background-position:center;
	background-size:22px 22px;
	background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='butt' stroke-linejoin='miter'>\
<circle cx='12' cy='12' r='3.25' fill='none'/>\
<path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09a1.65 1.65 0 0 0-1-1.51 1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09a1.65 1.65 0 0 0 1.51-1 1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09c0 .7.4 1.3 1 1.51a1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06c-.43.43-.56 1.08-.33 1.82V9c.2.6.8 1 1.51 1H21a2 2 0 0 1 0 4h-.09c-.7 0-1.3.4-1.51 1z'/>\
</svg>");
}

/* hover/focus */
.cog-btn:hover { background: rgba(0,0,0,.06); transform: rotate(20deg); }
.cog-btn:active { transform: rotate(0deg) scale(.95); background: rgba(0,0,0,.1); }


/* optional dark scheme */
@media (prefers-color-scheme: dark) {
	.cog-btn { color: #e8e8e8; }
	.cog-btn:hover { background: rgba(255,255,255,.08); }
}

/* Menu Button Styles */
.menu-button-underlined {
  background: transparent;
  color: #222;                  /* dark text */
  border: none;
  padding: 10px 20px;
  position: relative;
  transition: color 0.3s;
  cursor: pointer;
  overflow: hidden;
}
/* Animated underline via ::after on mouse over if not selected */
.menu-button-underlined::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #222;
  transition: width 0.3s;
}
/* Only show the underline animation if not in the selected state */
.menu-button-underlined:hover:not(.selected)::after {
  width: 100%;
}
/* Sliding background via ::before (for selected state) */
.menu-button-underlined::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #bbb;             /* light gray background */
  transition: width 0.6s;
  z-index: -1;
}
/* When selected, the text turns white with a subtle text shadow and the background fills */
.menu-button-underlined.selected {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.menu-button-underlined.selected::before {
  width: 100%;
}
/* Ensure the underline is hidden when selected */
.menu-button-underlined.selected::after {
  width: 0;
} 

/* Higher Denver 2026 button/forms overlay. */
:root {
	--hd-btn-ink: #17201c;
	--hd-btn-muted: #60706a;
	--hd-btn-line: #d8e0da;
	--hd-btn-green: #174f3d;
	--hd-btn-green-soft: #e5f0ea;
	--hd-btn-teal: #28716a;
	--hd-btn-copper: #b86b3f;
	--hd-btn-danger: #b94343;
	--hd-btn-radius: 6px;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.button-outlined,
.form-field-action,
.lnk_btn,
.lnk_btn_dis,
.menu-button-underlined,
.msg_btn,
.admin-log-btn,
.admin-setting-action,
.nav_box {
	font-family: "Inter", "Open Sans", Arial, sans-serif;
	letter-spacing: 0;
}

.button-outlined,
.form-field-action,
.lnk_btn,
input[type="button"],
input[type="submit"],
input[type="reset"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	min-width: 40px;
	padding: 0 15px;
	border: 1px solid var(--hd-btn-line);
	border-radius: var(--hd-btn-radius);
	background: #fff;
	color: var(--hd-btn-green);
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 6px 18px rgba(23, 32, 28, 0.08);
	cursor: pointer;
	transition: transform 140ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button-outlined:hover,
.form-field-action:hover,
.lnk_btn:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
	border-color: #b9c7bf;
	background: var(--hd-btn-green-soft);
	color: var(--hd-btn-green);
	box-shadow: 0 10px 24px rgba(23, 32, 28, 0.12);
	transform: translateY(-1px);
}

.button-outlined:active,
.form-field-action:active,
.lnk_btn:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(23, 32, 28, 0.09);
}

.button-outlined.selected,
.menu-button-underlined.selected,
.msg_btn_primary,
.admin-log-btn-active {
	border-color: var(--hd-btn-green);
	background: var(--hd-btn-green);
	color: #fff;
	text-shadow: none;
}

.lnk_btn_dis,
.button-outlined[disabled],
button[disabled],
input[disabled] {
	border-color: #e1e6e2;
	background: #f3f5f2;
	color: #929f98;
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
}

.menu-button-underlined {
	overflow: visible;
	border-radius: var(--hd-btn-radius);
}

.env-btn,
.cog-btn {
	width: 40px;
	height: 40px;
	border: 1px solid var(--hd-btn-line);
	background: #fff;
	color: var(--hd-btn-green);
	box-shadow: 0 6px 18px rgba(23, 32, 28, 0.08);
}

.env-btn:hover,
.cog-btn:hover {
	background: var(--hd-btn-green-soft);
	color: var(--hd-btn-green);
}

.form-field-container {
	border-radius: 0;
}

.form-field-title {
	color: var(--hd-btn-muted);
	font-weight: 800;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"],
.form-field input[type="tel"],
.form-field textarea,
select {
	min-height: 42px;
	border: 1px solid var(--hd-btn-line);
	border-radius: var(--hd-btn-radius);
	background: #fff;
	color: var(--hd-btn-ink);
	font: inherit;
	box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus,
select:focus {
	outline: 2px solid rgba(40, 113, 106, 0.24);
	outline-offset: 2px;
	border-color: var(--hd-btn-teal);
	box-shadow: 0 0 0 4px rgba(40, 113, 106, 0.11);
}

