.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.profile-password-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #cdd9ea;
  border-radius: 10px;
  background: #fff;
  padding: 0 18px;
  color: #071d51;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(7, 29, 81, 0.06);
}

.profile-password-link:hover {
  border-color: #9fb2cf;
  background: #f8fbff;
}

@media (max-width: 620px) {
  .profile-actions {
    display: grid;
    grid-column: 1 / -1;
    width: 100%;
  }

  .profile-password-link {
    width: 100%;
  }
}
