.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-primary {
  background: #1A5F3F;
  color: white;
  border: 1px solid #1A5F3F;
}
.btn-primary:hover {
  background: #458651;
  border-color: #458651;
}
.btn-secondary {
  background: transparent;
  color: #1A5F3F;
  border: 1px solid #1A5F3F;
}
.btn-secondary:hover {
  background: #F5F5F5;
}
.btn-text {
  color: #458651;
  text-decoration: none;
  border: none;
  padding: 0;
}
.btn-text:hover {
  text-decoration: underline;
}
