/* Quiet, single-line field focus for operational forms. */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #146b4b;
  background: #fdfefd;
  box-shadow: none;
}

input,
select,
textarea {
  transition: border-color .18s ease-out, background-color .18s ease-out;
}

.password-panel {
  max-width: 620px;
}

.password-panel form {
  display: grid;
  gap: 18px;
}

.password-panel label {
  display: grid;
  gap: 7px;
  font-weight: 600;
}

.password-panel .form-footer {
  margin-top: 6px;
}

.brand-logo {
  display: block;
  width: 236px;
  height: auto;
}

.footer-top .brand-logo {
  width: 180px;
}

@media (max-width: 580px) {
  .brand-logo,
  .footer-top .brand-logo {
    width: 174px;
  }
}
