@charset "UTF-8";
button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;      
  width: 100%;
  height: 42px;
  font-weight: 600;
  box-sizing: border-box;
  border-radius: 6px;
  cursor: pointer;
  outline: 0;
  margin: 5px;
}

button.primary {
  background: var(--primary);
  border: 0px;
  color: #FFFFFF;
}

button.secundary {
	color: var(--primary);
	background: rgba(255, 19, 74, 0.05);
	border: 1px solid var(--primary);
} 

button[disabled] {
  background: #BDBDBD;
  color: #777779;
  border: 1px solid #BDBDBD;
  cursor: not-allowed;
  pointer-events: none;
}

.Button-content {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
