.primary-button {
  margin-top: 6.4rem;
  border: none;
  border-radius: 2rem;
  
  width: 100%;
  height: 6.4rem;
  
  cursor: pointer;
  
  background: #3cdc8c;
  color: white;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  transition: background .2s;
}

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

.primary-button img {
  margin-right: 1.6rem;
}

.button-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

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

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

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

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