/* Keep the portal tagline centered across the entire footer, rather than
   centered only in the gap between its logo and return link. */
.portal-footer {
  position: relative;
}

.portal-footer img {
  justify-self: start;
}

.portal-footer a {
  justify-self: end;
}

.portal-footer p {
  margin: 0;
  text-align: center;
}

@media (min-width: 761px) {
  .portal-footer p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .portal-footer p {
    justify-self: center;
    width: 100%;
  }
}

/* Match the understated yellow guidance prompt in the public contact form. */
.portal-message-form textarea::placeholder {
  color: rgba(255, 217, 90, .34);
  opacity: 1;
  text-shadow:
    0 0 3px rgba(255, 205, 55, .20),
    0 0 8px rgba(237, 163, 20, .08);
}

@media (max-width: 760px) {
  .portal-message-form textarea::placeholder {
    color: rgba(255, 217, 90, .28);
    text-shadow:
      0 0 3px rgba(255, 205, 55, .15),
      0 0 7px rgba(237, 163, 20, .06);
  }
}
