.nfc-tag-register {
	background-color: #f1f1f1;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	padding: 10px;
	margin: 10px 0;
}

.nfc-tag-register input {
	width: 96%;
	height: 31px;
	font-size: 18px;
	padding: 2px 10px;
}

.nfc-tag-register input[type=text] {
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

.nfc-tag-register input[type=text]:focus {
  border: 3px solid #555;
}

.nfc-tag-register button {
	background-color: black;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-transform: uppercase;
}

/* Responsive */

@media screen and (max-width: 600px) {
	.nfc-tag-register input {
		width: 92%;
	}
}