﻿@charset "UTF-8";

/*
Form Styles
*/

.form-control {
    min-width: 100%;
}

.form_content{
	margin:0 auto;
	padding:10px;
	/*border:1px solid #eee;*/
	width:100%;
	/*max-width:750px;*/
	/*background:#fff;*/
}

.form-group label.required:after {
    /*position: absolute;*/
    position: relative;
    top: 4px;
    right: -5px;
    z-index: 99;
    content: '*';
    color: #e02b27;
}

.error:after {
    margin: 0;
    height: 34px;
    padding: 0 15px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 99;
    content: 'Required Field';
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 34px;
    background: #e02b27;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.bsb_button {
	width:100%;
	margin: 0;
	padding: 10px 5px;
	font-size:20px;
	background:#e02b27;
	color:#fff;
	border:1px solid #e02b27;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all ease-out 250ms;
    -moz-transition: all ease-out 250ms;
    -o-transition: all ease-out 250ms;
    transition: all ease-out 250ms;
}

#error_output{
	display:none;
	margin:0 0 5px 0;
	padding:10px 15px;
	color:#990000;
	border:2px solid #e02b27;
	background:#ffe7e7;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


.required{
	position: relative;
	display: block;
}
.required:after{
	position: absolute;
	top: 10px;
	right: -15px;
	z-index: 99;
	content:'*';
	color:#e02b27;
}
.required.error input{
	border:1px solid #e02b27;
}
.required.error:after{
	margin:0;
	height:38px;
	padding:0 15px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
	content:'Required Field';
	color:#fff;
	font-size:12px;
	font-weight:bold;
	line-height: 38px;
	background:#e02b27;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

/*.recaptcha-container {
    text-align: center;
    width: 100%;
}*/


.btn_submit {
    min-width: 100%;
    margin: 0;
    padding: 10px 5px;
    font-size: 20px;
    background: #e02b27;
    color: #fff;
    border: 1px solid #e02b27;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all ease-out 250ms;
    -moz-transition: all ease-out 250ms;
    -o-transition: all ease-out 250ms;
    transition: all ease-out 250ms;
}

    .btn_submit:hover {
        background: #dd0000;
        border: 1px solid #dd0000;
        cursor: pointer;
    }