html, body
{
	width:100%;
	height:100%;
	display:table;
	font-family:arial;
	overflow:hidden;
	background:rgba(66, 136, 238, 0.72) ;
	margin:0;
	padding:0;
	
}
.wrapper 
{
	width: 100%;
    height: 100%;
    background:url(../images/bg.webp)center no-repeat;
    background-size: contain;
	max-width:800px;
	margin:auto;
	vertical-align:middle;
	display:table-cell;
}

h1
{
	text-align:center;
	color:#FFF;
	padding: 0 0 15px 0;
	margin: auto;
}

.captchaContainer {
	max-width:400px;
    width: 60%;
    margin: auto;
	position:absolute;
	left:0;
	right:0;
	
	background-color: #f9f9f9;
	border: 1px solid #d4d4d4;
	    padding: 18px 0px 19px 30px;
	background:#f9f9f9 url(../images/logo.png) right center no-repeat;
	background-size: contain;
	-webkit-box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.75);
-moz-box-shadow:    7px 7px 5px 0px rgba(50, 50, 50, 0.75);
box-shadow:         7px 7px 5px 0px rgba(50, 50, 50, 0.75);
	
}
.captchaWrapper {
  line-height: 0;
    float: left;
}
.captchaWrapper, .captchaContainer {
  display: inline-block;

}
#hiddenCaptcha {
  display: none;
}
#hiddenCaptcha:checked + .captchaLabel:after {
  max-width: 25px;
  opacity: 1;
  overflow: inherit;
}
.captchaLabel {
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: 700;
  color: #4a4a4a;
  padding: 2px 0 0 40px;
  position: relative;
  display: block;
  float: left;
}
.captchaLabel:after {
  font-family: FontAwesome;
  position: absolute;
  content: '✔';
  max-width: 0;
  overflow: hidden;
  opacity: 0.5;
  font-size: 30px;
 top: -9px;
  left: -24px;
  color: #039F53;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s;
}
.captchaBox {
  width: 24px;
  height: 24px;
  padding: 0;
  outline: none;
  border: 2px solid #b9b9b9;
  border-radius: 2px;
}
.boxHover {
  background-color: #fff;
}
.boxHover:hover {
  cursor: pointer;
  border: 2px solid #1E88E5;
}
.scaleDown {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: scale(0.2,0.2);
}
.circle {
  border-top: 2px solid #1E88E5;
  border-right-color: transparent;
  border-bottom: 2px solid #1E88E5;
  border-left-color: transparent;
  border-radius: 12px;
  background-color: #fafafa;
}
.scaleUp {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all .6s ease;
  transform: scale(1,1);
}
.rotation {
  -webkit-transition: all 2s ease-out;
  -moz-transition: all 2s ease-out;
  -ms-transition: all 2s ease-out;
  transition: all 2s ease-out;
  transform: rotate(1080deg);
}
.fadeOut {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all .6s ease;
  border-color: transparent;
}
.captchaError {
  box-shadow: 0 0 1px 1px #E53935;
}