@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

/*
CSS rules to specify families
font-family: 'Oswald', sans-serif;
*/


.captchaBox{
	position:relative;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;		
}

.captchaBoxPercentage{
	width:100%;
	height:40px;
	position:relative;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.captchaBox:after,
.captchaBoxPercentage:after
{
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}

.captchaProduce{
	color:#333;
	height:40px;
	line-height:40px;
	font-family: 'Oswald', sans-serif;
	font-size:20px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;		
	color:#fff;
}


a.captchaReset{
	width:40px;
	height:40px;
	display:block;
	position:absolute;
	top:0px;
	left:70px;
	z-index:100;
	text-align:center;
	color:#fff;
	line-height:40px;
}

a.captchaReset:hover{
  transform:rotate(360deg);
  transition-duration:.5s;
  transform-origin:center 50%;
  text-decoration:none;
}

