/* Remove this if pasting into your stylesheet */

html,
body {
	border: 0;
	margin: 0;
	padding: 0;
}

body {
}

.content {
	margin: 0 auto;
	max-width: 800px;
	padding: 20px;
}

/* END "Remove this" */

label {display:block;}

/* Message boxes */
.ucf .message {
	margin-bottom: 20px;
}

.ucf .message p {
	font-weight: bold;
	margin-top: 0;
}

.ucf .message p:last-child {
	margin-bottom: 0;
}

.ucf .message ul {
	margin-bottom: 0;
}

/* Error message box */
.ucf .message .errors {
    background: #f3f4ff;
    border: solid 1px #3f4873;
    border-left: solid 10px #3f4873;
    border-radius: 5px;
    padding: 20px;
    color: #3f4873;
}

.ucf .message .errors p {
	color: #3f4873;
}

/* Success message box */
.ucf .message .success {
    background: #f4fff4;
    border: solid 1px #5cb85c;
    border-left: solid 10px #5cb85c;
    border-radius: 5px;
    padding: 20px;
    color: #5cb85c;
}

.ucf .message .success p {
	color: #5cb85c;
}

/* Form */
.ucf * {
	outline: none;
}

.ucf fieldset {
	/*border: solid 1px #ccc;*/
	border-radius: 5px;
}

.ucf legend {
	font-weight: bold;
    padding: 10px;
    width: auto;
    margin: auto;
    padding-bottom: 0px;
	color: #717171;
}

.ucf .field-wrapper {
	clear: both;
	margin-top: 0;
	line-height: 2em;
}

.ucf .field-wrapper label span {
    display: inline-block;
    float: left;
    width: 100px;
    text-align: right;
    padding-right: 25px;
    padding-top: 9px;
    font-size: 1.15em;
}

.ucf .field-wrapper input[type=text],
.ucf .field-wrapper input[type=tel],
.ucf .field-wrapper input[type=email],
.ucf .field-wrapper input[type=password],
.ucf .field-wrapper textarea,
.ucf .field-wrapper select {
	border: solid 1px #ccc;
	border-radius: 5px;
	padding: 8px;
	transition: all .3s ease-in-out;
}

.ucf .field-wrapper input[type=text]:focus,
.ucf .field-wrapper input[type=tel]:focus,
.ucf .field-wrapper input[type=email]:focus,
.ucf .field-wrapper input[type=password]:focus,
.ucf .field-wrapper textarea:focus,
.ucf .field-wrapper select:focus {
	border: solid 1px #717171;
}

@media (max-width: 480px) {
	.ucf fieldset {
		padding: 10px;
	}

	.ucf .field-wrapper {
		margin-bottom: 10px;
	}

	.ucf .field-wrapper input[type=text],
	.ucf .field-wrapper input[type=tel],
	.ucf .field-wrapper input[type=email],
	.ucf .field-wrapper input[type=password],
	.ucf .field-wrapper textarea {
		width: 87%;
	}

	.ucf .field-wrapper select {
		width: 170px;
	}
}

@media (min-width: 481px) {
	.ucf fieldset {
		padding: 20px;
	}

	.ucf .field-wrapper {
		margin-bottom: 20px;
	}

	.ucf .field-wrapper input[type=text],
	.ucf .field-wrapper input[type=tel],
	.ucf .field-wrapper input[type=email],
	.ucf .field-wrapper input[type=password],
	.ucf .field-wrapper textarea {
        width: 87%;
        font-size: 1.15em;
		font-weight: 300;
		line-height: 24px;
		font-size: 19px;
	}

	.ucf .field-wrapper select {
		width: fit-content;
	}
}

/* Select 2 overrides */
.select2 {
	margin-bottom: 20px;
}

.select2-container .selection,
.select2-container .select2-selection {
	width: 100% !important;
}

.select2-search__field:focus {
	outline: none;
}

/* Google no CAPTCHA reCAPTCHA */
@media (max-width: 480px) {
	.g-recaptcha {
		margin-bottom: 10px;
	}
}

@media (min-width: 481px) {
	.g-recaptcha {
		padding-left: 100px;
		margin-bottom: 20px;
	}
}

@media screen and (max-height: 575px) and (max-width: 335px) {

	#rc-imageselect,
	.g-recaptcha {
		transform: scale(0.77);
		-webkit-transform: scale(0.77);
		transform-origin: 0 0;
		-webkit-transform-origin: 0 0;
	}
}

/* Button */
.ucf button[type=submit] {
    background: #6F6F6F;
    border: 0;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    margin-left: 100px;
    padding: 10px 15px;
    transition: background .3s;
    margin-top: -10px;
}

.ucf button[type=submit]:hover {
    background: #444444;
}

.ucf button[type=submit].complete {
	background: #444444;
	cursor: default;
	display: none;
}

.ucf button.secondary {
	background: #444444;
    border: 0;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    margin-left: 100px;
    padding: 10px 15px;
    transition: background .3s;
}

.ucf button.secondary:hover {
	background: #ddd;
}

.padlock {color: #b3b3b3;font-size: 1.4em;position: absolute;margin: 2px 15px 5px -17px;}

.grecaptcha-badge{
	visibility: collapse !important;  
}

@media (min-width: 320px) and (max-width: 720px) {
    .ucf legend {
        padding:0px;
    }
    .ucf button[type=submit] {
        width:100%;
        margin-left:0px;
		margin-top: 5px;
    }
    .ucf .field-wrapper textarea {
        width:100%;
    }
    .ucf .field-wrapper input[type=email] {
        width:100%;        
    }
    .ucf .field-wrapper input[type=text] {
        width:100%;        
    }
    .ucf .field-wrapper label span {
        text-align:left;
    }
}