body {
	background: #f4f4f9;
	color: #333333;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	-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;
	color: #007bff;
}
.pen-title span {
	font-size: 14px;
	color: #555555;
}
.pen-title span .fa {
	color: #007bff;
}
.pen-title span a {
	color: #007bff;
	font-weight: 600;
	text-decoration: none;
}

.form-module {
	position: relative;
	background: #ffffff;
	max-width: 400px;
	width: 90%;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	margin: 30px auto;
	padding: 20px 30px;
	transition: all 0.3s ease;
}
.form-module:hover {
	transform: translateY(-5px);
}
.form-module .toggle {
	cursor: pointer;
	position: absolute;
	top: 15px;
	right: 15px;
	background: #007bff;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	color: #ffffff;
	font-size: 16px;
	line-height: 35px;
	text-align: center;
	transition: background 0.3s ease;
}
.form-module .toggle:hover {
	background: #0056b3;
}
.form-module .toggle .tooltip {
	color: #ffffff;
	position: absolute;
	top: 5px;
	right: -80px;
	display: block;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 5px;
	width: auto;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.form-module .toggle:hover .tooltip {
	opacity: 1;
}
.form-module .form {
	display: none;
	padding: 30px 0;
}
.form-module .form:nth-child(2) {
	display: block;
}
.form-module h2 {
	margin: 0 0 20px;
	color: #007bff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
}
.form-module input {
	background: #f9f9f9;
	outline: none;
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	margin: 0 0 20px;
	padding: 15px;
	box-sizing: border-box;
	font-weight: 400;
	border-radius: 30px;
	transition: border 0.3s ease, box-shadow 0.3s ease;
}
.form-module input:focus {
	border-color: #007bff;
	box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
	color: #333333;
}
.form-module input[type=submit] {
	cursor: pointer;
	background: #007bff;
	width: 100%;
	border: 0;
	padding: 15px;
	color: #ffffff;
	border-radius: 30px;
	transition: background 0.3s ease, box-shadow 0.3s ease;
	-webkit-appearance: none;
	-webkit-border-radius: 30px;
}
.form-module input[type=submit]:hover {
	background: #0056b3;
	box-shadow: 0 0 10px rgba(0, 86, 179, 0.2);
}
.form-module input[type=submit]:disabled {
        background: #003167;
	cursor: progress;
}
.form-module .cta {
	background: #e9ecef;
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
	color: #666666;
	font-size: 14px;
	text-align: center;
	border-radius: 0 0 10px 10px;
}
.form-module .cta a {
	color: #007bff;
	text-decoration: none;
}

.error {
	color: #e3342f;
	font-weight: 500;
}

.success {
	color: #38c172;
	font-weight: 500;
}
