*{
	padding: 0;
	margin: 0;
}
body{
	font-family: 'Ubuntu', sans-serif;
}
img{
	max-width: 100%;
}
.wrapper{
	background-color: #f7f7f7;
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	width: 100%;
	height: 100vh;
}
.formcontainer{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 500px;
	overflow-y: auto;
}
.formcontainer .content{
	padding: 0 30px;
	height: 100%;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,.5);
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.logo{
	max-width: 300px;
	display: flex;
	flex-flow: wrap;
	margin:1rem  auto;
}
.myform{
	width: 100%;
}
.captcha{
	border-radius: .3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background-color: #fff;
	max-width: 250px;
	margin: 1rem auto;
	margin-top: 0;
	box-shadow: 4px 2px 20px rgba(0,0,0,.1);
}
.captcha span{
	font-size: 1.6rem;
	font-weight: 600;
	text-decoration: line-through;
	color: #666;
}
.captcha button{
	width: 50px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: .3rem;
	margin-left: 15px;
	background-color: #fff;
}
.formcol{
	display: flex;
	flex-flow: column;
	margin-bottom: 1rem;
}
.formcol label{
	display: block;
	color: #666;
	margin-bottom: 5px;
}
.formcol input{
	border: 1px solid #ddd;
	padding: 0 15px;
	height: 50px;
	line-height: 50px;
	border-radius: .3rem;
	color: #666;
	font-size: 1rem;
}
.formcol .mybtn{
	display: block;
	padding: 0 10px;
	text-align: center;
	height: 50px;
	line-height: 50px;
	border-radius: .3rem;
	background-color: #0089cf;
	color: #fff;
	text-decoration: none;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}
.formcol .mybtn:hover{
	background-color: #006091;
}
.footer{
	position: absolute;
	right: 0;
	bottom: 0;
	width: calc(100% - 500px);
	background-color: #0089cf;
	color: #f7f7f7;
	min-height: 38px;
}
.footer p{
	display: block;
	padding: 10px 15px;
}

.social{
	display: flex;
	list-style-type: none;
	position: absolute;
	bottom: 0;
	padding: 10px 0;
	justify-content: center;
	margin: auto;
	width: 500px;
	left: 0;
	border-top: 1px solid #ddd;
}
.social li{
	margin: 0 10px;
}
.social li a{
	display: block;
	color: #607d8b;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}
.social li a:hover{
	color: #0089cf;
}

.error{
	display: flex;
	justify-content: center;
	flex-flow: column;
	text-align: center;
	align-items: center;
}
.error img{
	width: 128px;
}

@media(max-width: 991px){
.formcontainer{
	position: relative;
	margin: auto;
	right: 0;
	height: calc(100% - 38px);
}
.formcontainer .content{
	height: auto;
	position: relative;
	border-radius: .3rem;
	margin-top: 3rem;
}
.footer{
	width: 100%;
	text-align: center;
}
.social{
	position: relative;
	width: 100%;
	margin-bottom: 1rem;
}
}

@media(max-width: 575px){
.formcontainer{
	width: 100%;
}
.formcontainer .content{
	border-radius: 0;
}
.footer p{
	font-size: .875rem;
}
}