
/* -------------------------------------------------------- */
/*-----------------Base -----------------------------------     */
/* -------------------------------------------------------- */

:root {
  --ge-purple:        #6022A6;   /* Primary Brand Purple – buttons / active UI */
  --ge-purple-hover:  #411771;   /* Primary Hover / Interactive Purple */
  --ge-purple-dark:   #420588;   /* Secondary Dark Purple */
  --ge-purple-card:   #6F2DA8; /* hero cards */
  --ge-purple-light:  #CDB7E8;   /* Very Light Accent Purple */
  --ge-purple-tint:   #F2ECF8;   /* Ultra Light Tint */
  --ge-text: #1a1a1a;
  --ge-muted: #555;
}

body, .bodyelse {
  font-family: "Source Sans Pro", Arial, sans-serif !important;
  color: var(--ge-text);
  margin: 0;
}

a, a:hover, a:focus, a:active {
  color: var(--ge-purple);
}

/* ── Utility nav ── */
.utility-nav {
  background: #c7c8cf;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1rem;
}
.utility-nav a {
  color: var(--ge-text) !important;
  padding: 0.45rem 0.75rem !important;
  display: inline-block !important;
  text-decoration: none;
}
.utility-nav a:hover { text-decoration: underline; }

/* ── Main nav ── */
.main-nav {
  background: #fff;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.btn-employee-login, .btn {
  background-color: var(--ge-purple);
  color: #fff !important;
  border: none !important;
  font-size: 1rem !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color 0.25s ease;
  font-weight: 700 !important;
}
.btn-employee-login:hover, .btn:hover, .btn-employee-login:focus, .btn:focus {
  background-color: var(--ge-purple-hover);
  color: #fff;
}
.btn-reverse {
  color: var(--ge-purple) !important;
  background-color: #fff !important;
  border: 1px solid var(--ge-purple) !important;
}

/* ── Hero ── */
.hero {
  background-color: #f4f4f6;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
  mask-image: linear-gradient(to right, transparent 0%, black 50%);
  object-position: right center;
}
.hero-cards {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 1.5rem;
  width: 100%;
}

/* ── Action cards ── */
.action-card {
  background: var(--ge-purple-card);
  border-radius: 6px;
  color: #fff;
  padding: 1.5rem 1.75rem 1.4rem;
  margin-bottom: 1rem;
  max-width: 420px;
  text-decoration: none;
  display: block;
  transition: background-color 0.25s ease;
}
.action-card:hover {
  background-color: var(--ge-purple-hover);
  color: #fff;
  text-decoration: none;
}
.action-card p {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  line-height: 1.5;
  color: #fff;
}
.action-card .card-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.action-card .btn-reverse .card-link {
  color: var(--ge-purple) !important;
}
.action-card .chevron {
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s ease;
  margin-top: -2px;
}
.action-card:hover .chevron {
  transform: translateX(7px);
}

/* ── Welcome section ── */
.welcome-section {
  padding: 3.5rem 0 3.5rem;
  background: #fff;
}
.welcome-section h1 {
  font-size: 1.85rem;
  font-weight: 400;
  margin-bottom: 1.1rem;
  color: var(--ge-text);
}
.welcome-section p {
  font-size: 1rem;
  color: var(--ge-muted);
  max-width: 680px;
  line-height: 1.65;
}

/* ── Contact CTA band ── */
.contact-band {
  background: var(--ge-purple);
  padding: 3rem 0;
  color: #fff;
}
.contact-band p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.btn-contact {
  background: #fff;
  color: var(--ge-purple);
  border: 2px solid #fff;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.btn-contact:hover {
  background: var(--ge-purple-tint);
  color: var(--ge-purple);
  border-color: var(--ge-purple-tint);
  text-decoration: none;
}

/* ── Footer upper ── */
.footer-upper {
  background: #F2F2F5;
  padding: 1.5rem 0;
}
.footer-upper a {
  color: var(--ge-text);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-upper a:hover { text-decoration: underline; }

/* ── Footer lower ── */
.footer-lower {
  background: #F2F2F5;
  border-top: 1px solid #e5e5e5;
  padding: 1.25rem 0;
  font-size: 1rem;
  color: var(--ge-muted);
}
.footer-lower #footerlinks {
  align-items: flex-start;
  row-gap: 0.75rem;
}
.footer-lower .menu__link {
  color: var(--ge-muted) !important;
  text-decoration: none !important;
  display: inline-block !important;
  margin-bottom: 0.25rem !important;
}
.footer-lower .menu__link:hover {
  color: var(--ge-muted) !important;
  text-decoration: underline !important;
  display: inline-block !important;
  margin-bottom: 0.25rem !important;
}
.footer-lower .menu__link:hover { text-decoration: underline; }
.footer-lower .footerlink {
  row-gap: 0.15rem;
}

/* Logo placeholder */
.ge-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ge-text);
  text-decoration: none;
}
.ge-logo .logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ge-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

footer .ge-logo img {
  max-width: 165px;
}

.bodywrap {
  margin-top: 25px;
  margin-bottom: 0px;
  min-height: 50vh;
}

#page-tree {
  margin-bottom: 20px;
}

#match-form {
  max-width: 420px;
}

.action-card.match-card {
  padding: 0.5rem 1.75rem 0.5rem;
  width: fit-content;
}

/*==================== ========*/
/*========= Sections =========*/
/*============================*/
#recent-work{
    background: #a5a39e;
}
#maintenance-colored {
  background-color: #19bb7c;
  background-attachment: scroll;
  background-position: 50% -1115px;
  padding: 40px;
  color: #FFF;
}
#about-colored{
    background-color: #6022A6;
    background-attachment: scroll;
    background-position: 50% -1115px;
    padding-top:40px;
}
#about-colored-blue{
    background-color: #5bc2e7;
    background-attachment: scroll;
    background-position: 50% -1115px;
    padding-top:40px;
}
#about-colored-white{
    background-color: #fff;
    background-attachment: scroll;
    background-position: 50% -1115px;
    padding-top:40px;
}

@media (min-width: 992px) {
	.bodyelse .container-fluid, .container-fluid {
	  max-width: 1400px;
	  padding-left: 50px !important;
	  padding-right: 50px !important;
	}
}

@media (max-width: 991px) {
	.hero-image {
	  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
	  mask-image: linear-gradient(to right, transparent 0%, black 100%);
	  object-position: right center;
	}
}

@media (max-width: 767px) {
	.main-nav .ge-logo img {
	  max-width: 150px;
	}
	.hero-image {
	  -webkit-mask-image: linear-gradient(to right, transparent 60%, black 100%);
	  mask-image: linear-gradient(to right, transparent 60%, black 100%);
	  object-position: center center;
	}	
}

@media (max-width: 480px) {
	.main-nav .ge-logo img {
	  max-width: 100px;
	}
	.action-card.match-card {
		width: 100%;
		text-align: center;
	}
	.hero-image {
		right: -140px;
	}
	.btn-employee-login {
		font-size: 0.775rem !important;
		max-width: 260px;
		text-wrap: auto;
	}
}

#loginerror {
    font-weight: bold;
    font-size: 14px;
    color: white;
    padding: 8px;
    background-color: red;
    text-align: center;
    margin-top: 10px;
}

#loginerror2 {
  font-weight: bold;
  font-size: 1rem;
  color: white;
  padding: 8px;
  background-color: red;
  text-align: center;
  width: 100%;
  z-index: 999;
  position: relative;
}

@media (max-width: 767px) {
	#loginerror2 {
		top: 69px;
	}
}

/* Registration css */

/* ═══════════════════════════════════════
   Registration — global wrapper & card
═══════════════════════════════════════ */
.step-wrap {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  border: 0.5px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: rgba(0,0,0,0.1) 0px 1px 3px 0px, rgba(0,0,0,0.06) 0px 1px 2px 0px;
  padding: 2rem 2.5rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ge-text);
  border-bottom: 1.5px solid var(--ge-purple-light);
  padding-bottom: 0.75rem !important;
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════
   Step 1 — form fields
═══════════════════════════════════════ */
#regform table { width: 100%; }
#regform table tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
#regform table td {
  text-align: left !important;
  min-width: unset !important;
}
#regform table td:last-child {
  padding-bottom: 0.3rem;
}

/* Labels */
#regform .formfieldtitle b, #regform td > b {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ge-muted);
}

/* Required asterisk */
#regform td > span[style*="color: red"] {
  color: var(--ge-purple) !important;
}

/* Inputs & selects */
#regform .form-control,
#regform input.textfield,
#regform select.form-control,
#regform select.form-control-registration {
  border: none;
  border-bottom: 1px solid #8b8b8b !important;
  border-radius: 0;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  width: 100%;
  background: transparent;
  color: var(--ge-text);
  transition: border-bottom-width 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  font-family: "Source Sans Pro", Arial, sans-serif;
  box-shadow: none;
}
#regform .form-control:focus,
#regform input.textfield:focus,
#regform select.form-control:focus {
  outline: none;
  border-bottom: 3px solid #8b8b8b !important;
  box-shadow: none;
}

/* Password requirement */
#passwordRequirement {
  font-size: 0.8rem;
  color: var(--ge-muted) !important;
  background: var(--ge-purple-tint);
  border-left: 3px solid var(--ge-purple-light);
  border-radius: 4px;
  padding: 0.6rem 0.75rem;
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   Step 2 — verify/review table
═══════════════════════════════════════ */
.step-wrap .row > div > table { width: 100%; }
.step-wrap .row > div > table tr {
  display: flex;
  flex-direction: row;
  padding: 0.3rem 0;
}
.step-wrap .row > div > table tr:last-child {
  border-bottom: none;
}
.step-wrap .row > div > table td:first-child {
  min-width: 172px;
  text-align: right !important;
}
.step-wrap .row > div > table .formfieldtitle b {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ge-muted);
}
.step-wrap .row > div > table td:last-child {
  color: var(--ge-text);
  font-size: 1rem;
}

/* ═══════════════════════════════════════
   Terms card
═══════════════════════════════════════ */
.step-wrap .card {
  border: 0.5px solid var(--ge-purple-light);
  border-radius: 8px;
  background: var(--ge-purple-tint);
}
.step-wrap .card-body {
  padding: 1.25rem;
  font-size: 1rem;
  color: var(--ge-text);
  line-height: 1.65;
}
.step-wrap .form-check-input {
  accent-color: var(--ge-purple);
}
.step-wrap .form-check-label b {
  font-size: 1rem;
  color: var(--ge-text);
}
#consent {
  width: 1.3em;
  height: 1.3em;
  margin-right: 6px;
  margin-top: 5px;
}

/* ═══════════════════════════════════════
   Buttons — step 1 Next, step 2 Back/Submit
═══════════════════════════════════════ */

/* Step 1 — Next button */
#regbuttons .btn {
  background-color: var(--ge-purple) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  font-family: "Source Sans Pro", Arial, sans-serif !important;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
#regbuttons .btn:hover {
  background-color: var(--ge-purple-hover) !important;
}

/* Step 2 — Back button (red → neutral) */
input[id="submitbutton"][value*="«"] {
  background-color: #6c757d !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 1rem !important;
  font-family: "Source Sans Pro", Arial, sans-serif !important;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
input[id="submitbutton"][value*="«"]:hover {
  background-color: #5a6268 !important;
}

/* Step 2 — Submit button (green → purple) */
input[name="submitbutton"] {
  background-color: var(--ge-purple) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 0.5rem 1.25rem !important;
  font-size: 1rem !important;
  font-family: "Source Sans Pro", Arial, sans-serif !important;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
input[name="submitbutton"]:hover {
  background-color: var(--ge-purple-hover) !important;
}

/* ═══════════════════════════════════════
   Contact / redeem link
═══════════════════════════════════════ */
.redeemlink a {
  font-size: 1rem;
  color: var(--ge-purple);
  text-decoration: none;
}
.redeemlink a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════
   Required fields note
═══════════════════════════════════════ */
#requiredfields {
  font-size: 0.8rem;
  color: var(--ge-muted);
  float: none !important;
  text-align: right;
  margin-top: 0.75rem;
  margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════
   Error label
═══════════════════════════════════════ */
#lbl_error {
  font-size: 0.875rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   Mobile
═══════════════════════════════════════ */
@media (max-width: 640px) {
  .step-wrap {
    margin: 1rem;
    padding: 1.25rem 1rem;
  }
  .step-wrap .row > div > table td:first-child {
    min-width: 120px;
  }
}

/* ═══════════════════════════════════════
   Chosen select
═══════════════════════════════════════ */
.chosen-container-single .chosen-single {
  border: none;
  border-bottom: 1px solid #8b8b8b;
  border-radius: 0;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  background: transparent;
  box-shadow: none;
  height: auto;
  line-height: 1.5;
  color: var(--ge-text);
  transition: border-bottom-width 0.2s ease;
}
.chosen-container-single .chosen-single:hover {
  border-bottom-color: #555;
}
.chosen-container-single.chosen-with-drop .chosen-single {
  border-bottom: 3px solid #8b8b8b;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}
.chosen-container .chosen-drop {
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: rgba(0,0,0,0.1) 0px 4px 6px -1px;
}
.chosen-container .chosen-search {
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.chosen-container .chosen-search input {
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.875rem;
  font-family: "Source Sans Pro", Arial, sans-serif;
  color: var(--ge-text);
  box-shadow: none;
  background: #fff;
}
.chosen-container .chosen-search input:focus {
  outline: none;
}
.chosen-container .chosen-results {
  padding: 0.25rem 0;
  margin: 0;
}
.chosen-container .chosen-results li {
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--ge-text);
  line-height: 1.4;
  background: #fff;
}
.chosen-container .chosen-results li.highlighted {
  background: #f5f5f5 !important;
  color: var(--ge-text) !important;
}
.chosen-container .chosen-results li.result-selected {
  background: #fff;
  color: var(--ge-muted);
  font-weight: 600;
}
.chosen-container .chosen-results li.no-results {
  background: #fff;
  color: var(--ge-muted);
  font-size: 0.875rem;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 6px;
  right: 5px;
  display: block;
  width: 13px;
  height: 100%;
}

/* ═══════════════════════════════════════
   Facility not listed row
═══════════════════════════════════════ */
#rowFacilityNotListed[style*="display: table-row"],
#rowFacilityNotListed[style*="display: block"] {
  display: flex !important;
  flex-direction: column !important;
}

/* ═══════════════════════════════════════
   Terms & buttons alignment
═══════════════════════════════════════ */
#regterms, .regbuttonwrap {
  margin: 2rem auto;
  max-width: 900px;
}

.chosen-container .chosen-drop {
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: rgba(0,0,0,0.1) 0px 4px 6px -1px;
  margin-top: 0px;
}

.gray-bg {
  background-color: #F5F6F8;
}

.alertMsgIcon i {
  color: #0f5132 !important;
}
.alertMsgIcon {
  float: left;
  margin-right: 7px;
  color: #0f5132;
  height: 20px;
}

.alertMsg br {
  margin-bottom: 5px;
}

.maxwidth900 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.form-check-input:checked {
  background-color: var(--ge-purple);
  border-color: var(--ge-purple);
}

#maintenance-colored .message {
  font-size: 1.3em;
  font-weight: 300 !important;
}