/* a style to stand in for a brand icon or image */
#icon {
  width: 50px;
  height: 50px;
  background-color: rgba(219, 82, 187, 0.3);
  text-align: center;
  align-content: center;
}

.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.flex-icon {
  flex: 0 0 auto;
  order: 1;
}

.flex-link {
  flex: 1 1 auto;
  order: 2;
}

.flex-form {
  flex: 2 0 auto;
  order: 3;
}
