.form_div {
	margin-bottom: 15px;
}

.form_div input {
	box-sizing: border-box;
	width: 100%;
}

.input_text,
.error,
.success {
	padding: 8px 12px;
	border-radius: 2px;
	font-size: 1.1em;
}

select.input_text {
	padding-top: 7px;
	padding-bottom: 7px;
}

.form_div select {
	padding-right: 1.55em;
	-webkit-appearance: none;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
	max-width: 100%;
}

.form_div select::-ms-expand { display: none; } /* for IE 10 and 11, so you get the same arrow (above), rather than the default one */

#sign_in_info_wrap {
	position: relative;
	margin-top: 20px;
	overflow: hidden;
}

#sign_in_info {
	position: absolute;
	margin-left: 330px;
}

#sign_in_info h1 {
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

#sign_in_wrap {
	width: 300px;
}

#sign_in_wrap .reCap {
	margin-top: 10px;
}

.submit {
	text-align: center;
}

.green_box {
	padding: 6px 10px;
	border: 1px solid #00691c;
	background-color: #009c29;
	margin-bottom: 20px;
	color: #fff;
	font-family: "TT Norms";
	font-weight: 700;
}

.yellow_box {
	padding: 6px 10px;
	border: 1px solid #00691c;
	background-color: #f7c100;
	margin-bottom: 20px;
	font-family: "TT Norms";
	font-weight: 700;
}

.red_box {
	padding: 6px 10px;
	border: 1px solid #990404;
	background-color: #feeaea;
	margin-bottom: 20px;
}

.flash {
	-webkit-animation: flash 1s 2;
	-moz-animation: flash 1s 2;
	-o-animation: flash 1s 2;
	animation: flash 1s 2;
}

@-webkit-keyframes flash {
	0% { background-color: #009c29; }
	50% { background-color: #00e93d; }
	100% { background-color: #009c29; }
}

@-moz-keyframes flash {
	0% { background-color: #009c29; }
	50% { background-color: #00e93d; }
	100% { background-color: #009c29; }
}

@-o-keyframes flash {
	0% { background-color: #009c29; }
	50% { background-color: #00e93d; }
	100% { background-color: #009c29; }
}

@keyframes flash {
	0% { background-color: #009c29; }
	50% { background-color: #00e93d; }
	100% { background-color: #009c29; }
}

#account_nav {
	font-size: .9em;
}

#account_nav span {
	margin: 0 8px;
	color: #8e9ca0;
}

/* ===== Media Queries ===== */

@media screen and (max-width: 850px) {
	#sign_in_info > img:first-child {
		width: 42%;
	}
}

@media screen and (max-width: 650px) {
	#sign_in_info {
		margin-left: 0;
		position: static;
		right: auto;
		top: auto;
	}
	
	#sign_in_info > img:first-child {
		width: 30%;
	}
	
	#sign_in_wrap {
		width: auto;
		margin-top: 15px;
	}
}