.bg
{
	position: absolute;
	background-color: #222020;
	background-image: url(../img/vr.png);
	-webkit-background-size: 25%;
	background-size: 25%;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.wrapper
{
	position: relative;
	background-color: rgba(0,0,0,0.6);
	width: 100%;
	max-width: 500px;
	margin: 80px 38.5%;
	color: #fff;
	border-radius: 5px;
	/* padding: 40px; */
}

.wrapper .toggle
{
	position: absolute;
	top:10px;
	right: 10px;
	width: 100px;
	height: 25px;
	font-size: 14px;
	line-height: 25px;
	text-align: center;
	border-top: 2px solid #3DF5E6;
	border-bottom: 2px solid #C9F34B;
	transition: all 0.5s ease;
	cursor: pointer;
}

.wrapper .toggle span
{
	letter-spacing: 1px;
	 font-family: 'royal_acid';
}

.wrapper .toggle:hover
{
	border-top: 2px solid #F53DC3;
	border-bottom: 2px solid #F39A4B;
}

.wrapper h2
{
	margin: 0;
	margin-bottom: 30px;
	text-align: center;
	font-size: 2.5em;
	font-weight: bold;
	line-height: 1;
	font-family: 'royal_acid';
}

.wrapper input[type = "text"],
.wrapper input[type = "password"],
.wrapper input[type = "email"]
{
	outline: none;
	display: block;
	width: 100%;
	padding: 10px 0px;
	background-color: rgba(0,0,0,0.5);
	color:#fff;
	border: none;
	border-radius: 2px;
	border-bottom: 3px solid #96E2E9;
	font-size: 16px;
	font-weight: bold;
	margin: 0;
	margin-bottom: 15px;
	transition: all 0.5s ease;
}

.wrapper input[type = "text"]:focus,
.wrapper input[type = "password"]:focus,
.wrapper input[type = "email"]:focus
{
	border-bottom: 3px solid #47E63A;
}

.wrapper input[type = "submit"]
{
	background-color: #9774EA;
	color: #fff;
	width: 100%;
	padding: 15px 5px;
	border: none;
	border-radius: 3px;
	font-weight: bold;
	letter-spacing: 1px;
	font-size: 1.2em;
	cursor: pointer;
	transition: top 0.5s ease;
}

.wrapper input[type = "submit"]:hover
{
	background-color: rgba(77,183,86, 9);
}

.wrapper .formulario
{
	padding: 40px;
	display: block;
}

@media only screen and (max-width: 480px)
{
	.bg
	{
		-webkit-background-size: 50%;
		background-size: 50%;
	}

	.wrapper
	{
		width: 100%;
		
		margin: 80px 3%;
		color: #fff;
		border-radius: 5px;
		/* padding: 40px; */
	}
}

@media only screen and (min-width: 481px)  and (max-width: 767px)
{
	.bg
	{
		-webkit-background-size: 50%;
		background-size: 50%;
		background-position: center;
	}

	.wrapper
	{
		width: 80%;
		
		margin: 25px 20%;
		color: #fff;
		border-radius: 5px;
		/* padding: 40px; */
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px)
{
	.bg
	{
		-webkit-background-size: 50%;
		background-size: 50%;
		background-position: center;
	}

	.wrapper
	{
		position: relative;
		width: 100%;
		margin:25% 22%;
		color: #fff;
		border-radius: 5px;
		/* padding: 40px; */
	}
}