/* Buttons */
.form_submit {
    background-color: #00A454;
    border: 0;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    height: 50px;
    width: 100%;
    max-width: 288px;
    line-height: 50px;
    text-align: center;
    text-transform: capitalize;
    padding: 0 1rem;
    margin-top: 1rem;
    box-sizing: border-box;
    vertical-align: top;
    outline: none;
    -webkit-appearance: none;
    -webkit-transition: background-color 0.3s;
            transition: background-color 0.3s;
}

.form_submit:hover,
.form_submit:focus,
.form_submit:active {
    background-color: #008343;
}

/* Forms */
form {
    margin: 0;
    padding: 0;
}

.form_ok,
.form_alert {
    overflow: hidden;
    position: relative;
}

.form_alert .form_fieldmsg {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    padding: 0;
    margin: 0 0 8px 0;
}

.controltype_heading h4,
.controltype_menu {
    margin-bottom: 8px;
}

.controltype_radio * {
    vertical-align: middle;
    font-size: 0.875em;
    line-height: 1.35em;
}

.controltype_radio input {
    float: left;
    height: 15px;
    width: 15px;
    margin: 10px 6px;
    clear: left;
}

.controltype_radio strong {
    font-weight: normal;
    position: relative;
    float: right;
    width: calc(100% - 30px);
    padding: 6px 0;
}

input[type="radio"] + strong {
}

input[type="radio"]:checked + strong {
    font-weight: bold;
}

.controltype_captcha img {
    width: 150px;
    display: block;
}

.form_ok label,
.form_alert label {
    display: block;
    font-size: 14px;
    padding: 0;
    margin: 0 0 8px 0;
}

.form_alert .form_fieldmsg,
.form_ok .form_req,
.form_alert .form_req,
.form_notice {
    color: indianred;
}

.form_ok p {

}

.form_select {
    margin-top: 6px;
}

.form_select * {
    box-sizing: border-box;
}

.fieldtype-select select,
.shipping select,
.controltype_menu select,
.controltype_location select {
    margin: 0 0 10px 0;
    padding: 10px 40px 10px 12px;
    width: 100%;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #BCBEC0;
    border-radius: 4px;
    height: 50px;
    z-index: 1;
    position: relative;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
    outline: none;
}

.shipping select::-ms-expand,
.controltype_menu select::-ms-expand,
.controltype_location select::-ms-expand,
.fieldtype-select select::-ms-expand {
    display: none;
}

.shipping select:focus,
.controltype_menu select:focus,
.fieldtype-select select:focus,
.controltype_location select:focus {
    border-color: #00A454;
    background-color: beige;
}

.controltype_menu label,
.fieldtype-select label,
.controltype_location label {
    position: relative;
}

.fieldtype-select label:after,
.controltype_menu label:after,
.controltype_location label:after {
    content: "";
    border-color: #00A454;
    border-style: solid;
    border-width: 2px 2px 0 0;
    height: 8px;
    width: 8px;
    position: absolute;
    bottom: -35px;
    right: 22px;
    z-index: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.fieldtype-select label:before,
.controltype_menu label:before,
.controltype_location label:before  {
    position: absolute;
    bottom: -58px;
    right: 2px;
    content: "";
    background-color: #fff;
    border-left: 2px solid #BCBEC0;
    width: 50px;
    height: 50px;
    z-index: 0;
}

.fieldtype-select label:after {
    bottom: -28px;
}

.fieldtype-select label:before {
    bottom: -42px;
}

.form_alert #form_Registration_email,
#notes,
.form_textarea,
.form_text,
.form_captcha,
.fieldtype-text input,
.fieldtype-text input,
.fieldtype-email input,
.fieldtype-password input {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 50px;
    height: 50px;
    color: #444;
    background-color: #fff;
    border: 2px solid #BCBEC0;
    margin: 0 0 16px 0;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form_textarea:focus,
.form_text:focus,
.form_captcha:focus,
.fieldtype-email input:focus,
.fieldtype-password input:focus,
#notes:focus {
    border-color: #00A454;
    background-color: beige;
}

.controltype_captcha {
    text-align: right;
}

.controltype_captcha img {
    display: block;
    display: inline-block;
    vertical-align: top;
}

.form_captcha {
    max-width: 124px;
    width: 100%;
    margin: 0 0 1rem 10px;
    display: inline-block;
    vertical-align: top;
}

#notes,
.form_textarea {
    height: 148px;
    line-height: 1.5em;
    min-height: 148px;
    overflow: auto;
    padding: 10px;
}

.form_submit_box {
    text-align: right;
}

#associated_form {
    padding: 20px 0 30px;
}

.form_alert .form_fieldmsg strong {
    display: none;
}

.form_alert input,
.form_alert textarea,
.form_alert select {
    border-color: indianred;
    background-color: linen;
}

@media (min-width:768px) {
    #wrap_form_Login,
    #wrap_form_Registration {
        max-width: 50%;
    }

    #wrap_form_Login .title-login,
    #wrap_form_Registration .title-registration {
        margin-bottom: 0px;
    }

}