/* =========================================
   Membership Application Form
   ========================================= */

.membership-form-section {
    padding: 40px 0 50px;
}

.membership-form {
    max-width: 800px;
    margin-top: 28px;
}


/* Section headings */

.membership-form h3 {
    margin-top: 32px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}


/* Form fields */

.membership-field {
    margin-bottom: 20px;
}

.membership-field label {
    display: block;
    margin-bottom: 7px;
    font-weight: bold;
}

.membership-field input,
.membership-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #bbb;
    background: #fff;
    font: inherit;
    font-size: 16px;
    box-sizing: border-box;
}

.membership-field input {
    height: 46px;
}

.membership-field textarea {
    min-height: 110px;
    resize: vertical;
}


/* Field focus */

.membership-field input:focus,
.membership-field textarea:focus {
    outline: none;
    border-color: #555;
    box-shadow: 0 0 0 1px #555;
}


/* Radio buttons and checkboxes */

.membership-choice {
    display: block;
    margin: 13px 0;
    cursor: pointer;
}

.membership-choice input {
    margin-right: 10px;
}


/* Payment instructions */

.membership-payment-info {
    margin: 22px 0 28px;
    padding: 18px 22px;
    background: #f4f4f4;
    border-left: 4px solid #333;
}

.membership-payment-info p {
    margin-top: 0;
    margin-bottom: 10px;
}

.membership-payment-info p:last-child {
    margin-bottom: 0;
}


/* Submit button */

.membership-submit {
    margin-top: 35px;
    margin-bottom: 0;
}

.membership-submit .button {
    cursor: pointer;
}


/* Spam trap */

.membership-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* Mobile */

@media screen and (max-width: 700px) {

    .membership-form-section {
        padding: 30px 0 40px;
    }

    .membership-field input,
    .membership-field textarea {
        font-size: 16px;
    }

    .membership-payment-info {
        padding: 15px 18px;
    }

}

.membership-error {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid #333;
    background: #f4f4f4;
}

.membership-success {
    max-width: 800px;
    padding: 25px 0;
}