.nbtn {
	position: relative;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.3s;
	outline: none;
	z-index: 1;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	padding: 10px 50px;
	font-size: 15px;
	cursor: pointer;
	background: var(--green);			
}

.nbtn:hover {
	background: color-mix(in srgb, var(--green), black 10%);
}
.nbtn:active {
	transform: scale(0.95);
}