/* ---------- Base layout & typography ---------- */
.bob-snippet {
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  /* start the page a bit further down */
  margin: 85px 16px 24px;
}

.bob-snippet * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bob-snippet-inner {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bob-logo {
    padding: 0 0 24px 0;
}

.bob-logo img {
    max-width: 100%;
    max-height: 100%;
}

h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  margin: 0;
}

h2 {
  font-size: 22px;
  font-weight: 800;
  line-height: 30px;
  margin: 0 0 8px 0;
}

h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  margin: 16px 0 6px 0;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 8px 0;
}

label { 
  font-weight: 600; 
  word-break: break-word; 
  line-height: 16px; 
}

/* ---------- Layout ---------- */
.bob-flex-row { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
}

.bob-flex-col { 
  display: flex;
  flex-direction: column;
  position: relative; gap: 12px; 
}

/* ---------- Buttons ---------- */
.bob-buttons {
   display: flex; 
   flex-direction: column; 
   gap: 14px; 
}

/* Base button */
.bob-buttons .button {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-height: 64px;
  padding: 16px 18px;
  font-size: 18px;
  border-radius: 12px;
  border: 1px solid #e3e8e9;
  background: #ffffff;
  color: #111;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    box-shadow .22s ease,
    transform .06s ease,
    background-color .18s ease,
    border-color .18s ease;
}

/* ---------- Hover ----------  */
.bob-buttons .button:hover {
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transform: translateY(-1px);
}
.bob-buttons .button:active {
  transform: translateY(0); 
}

.bob-buttons button.button { 
  text-align: left; justify-content: center;
}

/* Primary */
.bob-buttons .stage.button {
  background: #215794;
  color: #fff;
  border-color: transparent;
}

.bob-buttons .stage.button:hover {
  background: #004172; 
}

.bob-buttons .stage.button:active { 
  background: #001d33; 
}

/* Secondary (2nd & 3rd): gray border + gentle hover */
.bob-buttons .secondary.button {
  background: #fff;
  color: #111;
  border-color: #d6dee2;           
  box-shadow: inset 0 1px 0 #fff;
}
.bob-buttons .secondary.button:hover {
  background: #fbfcfd;             /* very light gray on hover */
  border-color: #c9d2d8;
}

/* Button text helpers */
.bob-btn-title {
  font-weight: 700; 
}
.bob-btn-sub {
  font-size: 14px; line-height: 20px; color: #e7eef6; 
}
.bob-btn-sub--muted {
  color: #617780; 
}

/* ---------- Description & lists ---------- */
.bob-description { 
  gap: 8px; 
}

.bob-list {
  margin: 0 0 4px 0; 
  padding-left: 18px; 
}
.bob-list li {
  margin: 4px 0; 
}

/* ---------- Links ---------- */
a.bob-link {
  color: #005799;
  transition: color .2s ease; 
}
a.bob-link:hover { 
  color: #004172; 
  text-decoration: underline; text-decoration-thickness: 2px; 
}
a:visited { 
  color: #674a99; 
}

/* ---------- Misc / compatibility ---------- */
fieldset {
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-block-start: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
  padding-block-end: 0;
  min-inline-size: min-content;
  border-width: 0;
  border-style: none;
  border-color: transparent;
  border-image: none;
  border-top: 1px solid #e3e8e9;
  padding-top: 16px;
}

legend {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
}

.bob-divider {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  color: #617780;
}
.bob-divider::before, .bob-divider::after { 
  content: '';
  background: #d1d9dc; 
  height: 1px; 
  width: 100%; 
}

.bob-helper-text {
  font-size: 14px;
  color: #5c5c5c; 
}

input, textarea {
  padding: 8px;
  border: 1px solid #bbb;
  background: white;
  font-family: inherit;
  color: inherit;
  font-size: 16px;
}

input {
  height: 48px; 
}

.bob-gap-16 {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.bob-gap-8 {
  gap: 8px;
}

.bob-padding {
  padding: 40px;
  background: #f5f5f5;
}

.bob-align-center {
  align-items: center;
  text-align: center;
  justify-content: center;
}

.bob-go-back {
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 8px;
  padding-top: 24px;
  order: 99;
}

.bob-p-tiny {
  font-size: 14px;
}

.bob-p-error {
  font-size: 14px;
  color: #ad1d24;
}

.bob-p-call-out {
  font-size: 16px;
  padding: 16px;
  border-left: 3px solid #674a99;
  background: #ece2f1;
}

h3.bob-employee-login {
	display:none;
    }
a.bob-employee-login {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 16px;
}

:focus-visible, a:focus, .bob-button:focus {
  outline: 2px dotted #333; outline-offset: 2px; 
}


/* ---------- Responsive ---------- */
@media only screen and (max-width: 1640px) {
  h3.bob-employee-login { 
    display: block; 
}

  a.bob-employee-login { 
    position: relative; 
    padding: 0; 
    margin: 0; 
}

}

@media only screen and (max-height: 760px) {
  h3.bob-employee-login { 
    display: block; 
}
  a.bob-employee-login { 
    position: relative; 
    padding: 0; margin: 0; 
}

}

@media only screen and (max-width: 768px) {
  .bob-snippet { 
    margin: 32px 16px;
 }  
  .bob-snippet-inner {
    padding-bottom: 40px;
 }
  h1 {
    font-size: 28px; 
    line-height: 36px; 
 }
  h2 { 
    font-size: 20px; 
 }
  .bob-buttons .button {
     font-size: 16px;
     min-height: 60px; 
 }
  .bob-flex-row { 
    flex-direction: column;
 }
  h3.bob-employee-login {
    display: block; 
 }
  a.bob-employee-login { 
    position: relative; padding: 0; margin: 0; 
 }
  .bob-padding {
     padding: 16px; 
 }
}
