.primary-button {
  margin-top: 6.4rem;
  width: 100%;
  height: 6.4rem;
  border: 0;
  cursor: pointer;
  background-color: #3cdc8c;
  border-radius: 2rem;
  color: white;

  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  text-decoration: none;

  transition: background-color 200ms;
}

.primary-button p {
  margin: 0 1.6rem;
}

.primary-button:hover { 
  background-color: #36cf82;
}

.button-selected {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.button-selected button.active {
  background-color: #edfff6;
  border: 1px solid #a1e9c5;
  color: #37c77f; 
}

.button-selected button:first-child {
  border-radius: 2rem 0 0 2rem;
}

.button-selected button:last-child {
  border-radius: 0 2rem 2rem 0;
}

.button-selected button {
  height: 6.4rem;
  background-color: #f5f8fa;
  border: 1px solid #d3e2e5;
  color: #5c8599;
  cursor: pointer;
}