#bReg,
#bReg * {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	
	font-family: Tahoma, Verdana, Segoe, sans-serif;
	font-size: 100%;
	font-weight: 400;
	line-height:1;
	color:#444;
	
	-webkit-text-size-adjust: none;
}

#bReg {
	width: 95%;
	margin: 2rem auto;
	max-width: 60rem;
}

#bReg input, 
#bReg textarea, 
#bReg select,
#bReg button {
	font-family: Tahoma, Verdana, Segoe, sans-serif;
	line-height: 130%;
	border-color: #8f8f8f;
	border-radius: 0;
	
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
#bReg input:hover, #bReg input:focus,
#bReg textarea:hover, bReg textarea:focus,
#bReg select:hover, #bReg select:focus {
	border-color: #444;
}

#bReg input[type=text], 
#bReg input[type=tel],
#bReg input[type=email],
#bReg textarea,
#bReg select {
	font-size: 1rem;
	border-width: .063rem;
	border-style: solid;
	box-sizing: border-box;
	padding: .75rem .5rem;
	background: transparent;
	width: 100%;
}

#bReg input[type=checkbox] {
	border-width: .063rem;
	border-style: solid;
	height: 1.3rem;
	width: 1.3rem;
	border-radius: 0;
	cursor: pointer;
	position: relative;
	margin: 0 .7rem 0.3rem 0;
	
	-webkit-appearance: none;
	appearance: none;
}

#bReg input[type=checkbox]:checked:before {
	content: "";
	position: absolute;
	left: 17%;
	top:17%;
	right: 17%;
	bottom: 17%;
	background: #444;
}

#bReg select {
	padding-right: 2.2rem;
	background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='30' viewBox='0 0 24 24' width='28' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
	background-repeat: no-repeat;
	background-position: 99% 50%;
	
	-webkit-appearance: none;
	appearance: none;
}

#bReg ::placeholder {
	opacity: .25;
}
#bReg ::-moz-placeholder {
	opacity: .25;
}
#bReg :-moz-placeholder {
	opacity: .25;
}
#bReg :-ms-input-placeholder {
	opacity: .25;
}

#bReg input[type=submit],
#bReg button {
	cursor: pointer;
	font-size: 1.1rem;
	background: #8f8f8f;
	width: 100%;
	padding: .85rem;
	color: #fff;
	line-height: 1.1;
	letter-spacing: .03rem;
	opacity: 1;
}
#bReg input[type=submit]:hover, #bReg input[type=submit]:focus,
#bReg button:hover, #bReg button:focus {
	background: #444;
}

#bReg textarea {
	resize: none;
	height: 9rem;
}

#bReg label {
	font-size: .9rem;
	display: inline-block;
	padding-bottom: .5rem;
}

#bReg p {
	line-height: 1.3;
}

#bReg a {
	color: #8f8f8f;
	
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
#bReg a:hover {
	color: #444;
}

#bReg .bRegRow {
	display: flex;
	justify-content: space-between;
	padding-bottom: .6rem;
}

#bReg .bRegField {
	width:100%;
	margin-bottom: .6rem;
}

#bReg .bRegCol70 {
	width:69%;
}

#bReg .bRegCol50 {
	width:49%;
}

#bReg .bRegCol30 {
	width:29%;
}

#bReg .bRegReq {
	color: #ff6161;
	font-size: 80%;
	float: right;
	padding-left: .15rem;
}

#bReg .bRegDisable {
	display: none;
	height: 0;
	width: 0;
	opacity: 0;
}

#bReg #bRegRowPP {
	justify-content: flex-start;
	padding: .6rem 0 1.2rem;
}

#bReg #bRegRowSubmit {
	min-height: 2.9rem;
	position: relative;
}

#bReg #bRegRowSubmit.bRegLoading input[type=submit] {
	opacity: 0;
}

#bReg #bRegRowSubmit.bRegLoading:after {
	opacity: 1;
}

#bReg #bRegRowSubmit:after {
	content: "";
	opacity: 0;
	width: 2.9rem;
	height: 2.9rem;
	border: .4rem solid #444;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: calc(50% - 1.45rem);
	top: 0;
	
	-webkit-animation: bRegRotate 1s linear infinite;
	-moz-animation: bRegRotate 1s linear infinite;
	-ms-animation: bRegRotate 1s linear infinite;
	-o-animation: bRegRotate 1s linear infinite;
	animation: bRegRotate 1s linear infinite;
}

@-webkit-keyframes bRegRotate {
	0%	 {transform: rotate(0deg); }
	100% {transform: rotate(360deg);}
} 
@-moz-keyframes bRegRotate {
	0%	 {transform: rotate(0deg); }
	100% {transform: rotate(360deg);}
} 
@-ms-keyframes bRegRotate {
	0%	 {transform: rotate(0deg); }
	100% {transform: rotate(360deg);}
} 
@-o-keyframes bRegRotate {
	0%	 {transform: rotate(0deg); }
	100% {transform: rotate(360deg);}
} 
@keyframes bRegRotate {
	0%	 {transform: rotate(0deg); }
	100% {transform: rotate(360deg);}
} 

#bReg .bRegErr,
#bReg .bRegSuc {
	text-align: center;
	padding: .75rem;
	border: .063rem solid #ff2e2e;
	color: #ff2e2e;
	background: #ffc5c5;
	font-size: 1.05rem;
	margin: .5rem 0 1rem;
}

#bReg .bRegSuc {
	border-color: #1d841d;
	color: #1d841d;
	background: #eaffea;
}

#bReg .bRegErr a,
#bReg .bRegSuc a {
	color: inherit;
}




body {
	margin: 0;
	padding: 0;
	font-family: Tahoma, Verdana, Segoe, sans-serif;
}

header {
	background: #2b3a42;
	padding: 1rem 4%;
	text-align: center;
}

#logo {
	max-width: 30rem;
	height:auto;
}

h1 {
	font-size: 1.45rem;
	color:#2b3a42;
	width: 95%;
	margin: 2rem auto 0;
	max-width: 60rem;
	letter-spacing: .03rem;
}

footer {
	border-top:.063rem solid #2b3a42;
	padding: .5rem 3% 2rem;
	color:#2b3a42;
	text-align: center;
	font-size: .8rem;
}

footer a {
	color: inherit;
}


