/* Tabs */
.dTabs {
	position: relative;
	width: 300px;
	height: 250px;
	margin: 20px auto;
	border-bottom: 1px solid #50f;
	background-color: rgba(0,0,0,0);
	text-align: center;
	transform: rotate(1deg);
}

.rTab {
	display: none;
}

.lTab {
	display: inline-block;
	margin: 0 5px;
	padding: 3px;
	border: 1px solid #50f;
	border-bottom: none;
	background-color: rgba(0,0,0,0);
	font-family: "Times New Roman";
	font-size: 16px;
	font-style: italic;
	color: #50f;
	user-select: none;
	transform: rotate(5deg);
}

.lTab:hover {
	background-image: linear-gradient(135deg, rgba(64,0,255,0.5), transparent 25%, transparent 75%, rgba(64,0,255,0.5) 100%);
}

.dTab {
	display: none;
	position: absolute;
	width: 300px;
	height: 500px;
	padding-top: 30px;
	text-align: center;
}

.dTab > div {
	display: inline-block;
	margin-top: 10px;
}

.rTab:checked + .lTab {
	transform: rotate(-9deg);
}

.rTab:checked + .lTab + .dTab {
	display: block;
	background-color: rgba(0,0,0,0);
}
/* end Tabs */

.text {
	position: relative;
	width: 250px;
	margin: 5px;
	padding: 0px;
	border: none;
	border-bottom: 1px solid #50f;
	background-color: rgba(0,0,0,0);
	text-align: center;
	color: #50f;
	font-family: "Times New Roman";
	font-size: 18px;
	font-style: italic;
	outline: none;
	transform: rotate(-2deg);
	animation-name: stretch;
	animation-duration: 2s;
}

.text::placeholder {
	color: #50f;
}

.text:-ms-input-placeholder {
	color: #50f;
}

.text::-ms-input-placeholder {
	color: #50f;
}

.password {
	position: relative;
	width: 250px;
	margin: 5px;
	padding: 0px;
	border: none;
	border-bottom: 1px solid #50f;
	background-color: rgba(0,0,0,0);
	text-align: center;
	color: #50f;
	font-family: "Times New Roman";
	font-size: 18px;
	font-style: italic;
	outline: none;
	transform: rotate(1deg);
	animation-name: stretch;
	animation-duration: 2s;
}

.password::placeholder {
	color: #50f;
}

.password:-ms-input-placeholder {
	color: #50f;
}

.password::-ms-input-placeholder {
	color: #50f;
}

.button {
	width: 100px;
	height: 30px;
	margin: 20px 0 10px 150px;
	border: 1px solid #50f;
	border-top-left-radius: 25px;
	border-bottom-right-radius: 5px;
	background-color: rgba(0,0,0,0);
	transform: rotate(-5deg);
	font-family: "Times New Roman";
	font-size: 16px;
	font-style: italic;
	color: #50f;
	outline: none;
	animation-name: stretch;
	animation-duration: 2s;
}

.button:hover {
	background-image: linear-gradient(135deg, rgba(64,0,255,0.5), transparent 25%, transparent 75%, rgba(64,0,255,0.5) 100%);
}

@keyframes stretch {
	0% {width: 0; color: rgba(0,0,0,0)}
	80% {top: 50%;  color: rgba(0,0,0,0.2)}
	100% {top: 100%;}
}