.form-box {
	display: inline-block;
	padding: 3px;
}
.form-box p {
	text-align: left;
	font-size: 13px;
}
.box {
	height: 28px;
	border-radius: 3px;
	border: 1px solid #54060642;
	box-sizing: border-box;
	outline: none;
	font-size: 12px;
}
.box:focus {
	border: 1px solid #06d2a0;
}
.box[type="text"],
.box[type="password"],
.box[type="phone"] {
	padding: 0 5px;
}

.btn {
	height: 30px;
	border-radius: 3px;
	border: none;
	box-sizing: border-box;
	outline: none;
	box-shadow: 0 0 2px #54060642;
	padding: 0 5px;
	cursor: pointer;
}
.bg-primary {
	background: #3e0e0e;
	color: wheat;
}
.bg-primary:hover {
	background: #1d0404;
}

.bg-green {
	background: #79a386;
	color: wheat;
}
.bg-green:hover {
	background: #567660;
}