.container {
  display: flex;
  flex-flow: column nowrap;
}

.container .text {
  font-size: 0.9rem;
  font-weight: bold;
}

.container .actions {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
}

.button {
  box-sizing: border-box;
  border: none;
  min-width: 70px;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.button.success {
  background-color: #08289a;
  color: white;
}

.button.error {
  border: 2px solid #08289a;
  background-color: white;
}
