.nb-form {
	max-width: 640px;
	margin: 0 auto;
	font-family: inherit;
}
.nb-form p {
	margin-bottom: 16px;
}
.nb-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}
.nb-form input[type="text"],
.nb-form input[type="email"],
.nb-form input[type="number"],
.nb-form input[type="file"],
.nb-form select,
.nb-form textarea {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 15px;
}
.nb-form button[type="submit"] {
	background: #1a1a1a;
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}
.nb-form button[type="submit"]:hover {
	background: #333;
}
