button {
	background: linear-gradient(45deg, #ff6a00, #ee0979);
	border: none;
	color: white;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 15px 30px;
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  }
  button:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.15);
	background: linear-gradient(45deg, #ee0979, #ff6a00);
  }
  button:active {
	transform: scale(0.95);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);
  }
/*--