@charset "UTF-8";
/* Form CSS */

form.form {
	width:100%;
	height:auto;
	margin:10px 0;
	padding:0;
}

/* Captcha Label */
.cap_label {
	margin:20px 10px 0 0;
	display:inline-block;
	float:left;
	font-family: 'Ruda', sans-serif;
	font-size:16px;
	font-weight:bold;
	letter-spacing:normal;
	word-spacing:normal;
	line-height:26px;
	color:#f00;
}

/* Input */
input.form_input {
	width:calc( 100% - 60px );
	height:40px;
	margin:10px 0;
	padding:0 50px 0 10px;
	border:none;
	outline:none;
	border:1px solid #ddd;
	font-family: 'Raleway', sans-serif;
	font-size:14px;
	font-weight:normal;
	letter-spacing:0.05em;
	line-height:40px;
	color:#000;
	background:#f5f5f2 98% center;
	font-weight:600;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	-o-border-radius:3px;
}

input.form_input:focus {
	border:1px solid #9c9c5f;
}

input.input_cap {
	width:60px;
	float:left;
}

input.input_white {
	background:#fff;
	background-position: 98% center !important;
}

/* Textarea */
textarea.form_textarea {
	width:calc( 100% - 60px );
	height:130px;
	margin:10px 0;
	padding:10px 50px 10px 10px;
	border:none;
	outline:none;
	border:1px solid #ddd;
	font-family: 'Raleway', sans-serif;
	font-size:14px;
	font-weight:normal;
	letter-spacing:0.05em;
	line-height:24px;
	color:#000;
	background:#f5f5f2 98% center;
	font-weight:600;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	-o-border-radius:3px;
}

textarea.form_textarea:focus {
	border:1px solid #9c9c5f;
}

/* Button */
button.form_button {
	width:auto;
	height:auto;
	margin:10px 0;
	padding:9px 25px 8px 25px;
	border:none;
	outline:none;
	background:#ddd;
	cursor:pointer;
	font-family: 'Ruda', sans-serif;
	font-size:13px;
	line-height:23px;
	font-weight:bold;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	-o-border-radius:3px;
}

button.button_primary {
	background:#ffd900;
}
button.button_primary:hover {
	color:#fff;
	background:#000;
}

/* Alerts */
.err_alert {
	background-image:url(../images/icon-cross.png) !important;
	background-position: 98% center !important;
	background-repeat:no-repeat !important;
}
.sucs_alert {
	background-image:url(../images/icon-check.png) !important;
	background-position: 98% center !important;
	background-repeat:no-repeat !important;
}
textarea.err_alert, textarea.sucs_alert {
	background-position:98% 10px !important;
}

/* Message */
.error_mesg, .sucs_mesg {
	font-family:'Ruda', sans-serif;
	margin:10px 0;
	padding:5px 10px;
	width:calc( 100% - 20px );
	color:#fff !important;
	background:#f00 !important;
	font-size:13px;
	line-height:23px;
	font-weight:bold;
	letter-spacing:normal;
}
.sucs_mesg {
	background:#00a904 !important;
}