body {
	background: #ffffff;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pen-title {
	padding: 50px 0;
	text-align: center;
	letter-spacing: 2px;
}
.pen-title h1 {
	margin: 0 0 20px;
	font-size: 48px;
	font-weight: 300;
}
.pen-title span {
	font-size: 12px;
}
.pen-title span .fa {
	color: #202020;
}
.pen-title span a {
	color: #202020;
	font-weight: 600;
	text-decoration: none;
}

.form-module {
	position: relative;
	background: #ffffff;
	max-width: 320px;
	width: 100%;
	border-top: 5px solid #007bff;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
}
.form-module .toggle {
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	background: #007bff;
	width: 30px;
	height: 30px;
	margin: -5px 0 0;
	color: #fffcfc;
	font-size: 12px;
	line-height: 30px;
	text-align: center;
}
.form-module .toggle:hover {
	background: #3a00ff;
}
.form-module .toggle .tooltip {
	color: #000000;
	position: absolute;
	top: 5px;
	right: -65px;
	display: block;
	background: rgba(255, 255, 255, 0.01);
	width: auto;
	padding: 5px;
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
}
.form-module .form {
	display: none;
	padding: 40px;
}
.form-module .form:nth-child(2) {
	display: block;
}
.form-module h2 {
	margin: 0 0 20px;
	color: #202020;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}
.form-module input {
	background: #ffffff;
	outline: none;
	display: block;
	width: 100%;
	border: 0.1px solid #e0e0e0;
	margin: 0 0 20px;
	padding: 10px 15px;
	box-sizing: border-box;
	font-wieght: 400;
	transition: 0.3s ease;
}
.form-module input:focus {
	border: 0.1px solid #007bff;
	color: #000000;
}
.form-module input[type=submit] {
	cursor: pointer;
	background: #007bff;
	width: 100%;
	border: 0;
	padding: 10px 15px;
	color: #ffffff;
	transition: 0.3s ease;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
}
.form-module input[type=submit]:hover {
	background: #3a00ff;
}
.form-module input[type=submit]:disabled {
	background: #003167;
	cursor: progress;
}
.form-module .cta {
	background: #f2f2f2;
	width: 100%;
	padding: 15px 40px;
	box-sizing: border-box;
	color: #666666;
	font-size: 12px;
	text-align: center;
}
.form-module .cta a {
	color: #333333;
	text-decoration: none;
}

.error {
	color: #D20009;
}

.success {
	color: #32CD32;
}
