.account-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.account-panel h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.account-panel p {
  margin: 0;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .account-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .account-panel .button-link {
    width: 100%;
  }
}
