.btn.btn-primary,
.btn.btn-secondary {
  border-radius: 10px;
  text-align: center;
  display: inline-block;

  /* make buttons taller */
  padding: 12px 24px;

  /* space between buttons */
  margin-right: 10px;
  margin-bottom: 10px;

  /* subtle shadow bottom + right */
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
}




/* Older CSS Standalone uniform-size ADE button 
.button-uniform-size {
  width: 500px;                   
  display: inline-flex;
  justify-content: center;       
  align-items: center;            
  text-align: center;

  /* Visual styling matching our current button template 
  background-color: rgb(0, 45, 114);
  border: 1px solid rgb(215, 220, 232);
  padding: 14px 27px;
  border-radius: 27px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #fff !important;
  text-decoration: none !important;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  box-sizing: border-box;
  white-space: normal;
}

@media (max-width: 360px) {
  .button-uniform-size {
    width: 100%;
    max-width: 300px;
  }
}*/