.join-options-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.join-option {
    padding: 40px 30px;
    margin: 25px 0 0;
    border: solid 1px #C1C1C1;
    border-radius: 2px;
    box-shadow: 0 0 1px 0px #C1C1C1;
    cursor: pointer;
}

    .join-option.selected, .join-option:hover {
        border-color: #EF9C2B;
    }

.join-option-title{
    color: black;
    font-weight:bold;
    font-size: larger;
}

.join-option-subtitle {
    color: #C1C1C1;
    font-weight: bold;
}

.join-option-plus {
    color: #EF9C2B;
    font-size: 40px;
    margin-bottom: 10px;
}

.join-form-anchor {
    padding-top: 150px;
}

.join-form-section {
    border: solid 1px #C1C1C1;
    border-radius: 2px;
    box-shadow: 0 0 1px 0px #C1C1C1;
}

.join-form-title {
    margin: 0 auto 40px;
    text-align: center;
    font-weight: bold;
    font-size: x-large;
    color: black;
}

.join-form-title-input {
    visibility: hidden;
    position: absolute;
    z-index: -999;
    max-height: 1px;
    max-width: 1px;
    display: flex;
    overflow: hidden;
}

.join-form-description {
    margin-bottom: 40px;
}

.join-form {
    padding: 50px 150px;
}

    .join-form .input-icon {
        position: absolute;
        right: 40px;
        top: 15px;
        opacity: 0.7;
    }

    .join-form button {
        width: 100%;
        position: relative;
        padding: 10px 30px;
        line-height: 24px;
        text-transform: uppercase;
        background: #272727;
        color: #ffffff !important;
        border: 2px solid #272727;
        font-size: 14px;
        font-weight: 400;
        border-radius: 2px;
        font-family: 'Montserrat', sans-serif;
    }

        .join-form button:hover {
            background: #EF9C2B;
            color: #ffffff !important;
            border-color: #EF9C2B;
        }

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
    .inputfile + label {
        display: block;
        width: 100%;
        line-height: 24px;
        height: 50px;
        font-size: 16px;
        border: 1px solid #f4f4f4;
        padding: 12px 25px;
        background-color: #f4f4f4;
        color: #111111;
        border-radius: 2px;
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        margin-bottom: 0;
        font-weight: initial;
    }

    .inputfile:focus + label,
    .inputfile + label {
        cursor: pointer; /* "hand" cursor */
    }
    .inputfile:focus + label {
        outline: 1px dotted #000;
        outline: -webkit-focus-ring-color auto 5px;
    }
    .inputfile + label * {
        pointer-events: none;
    }
    .inputfile + label span {
        color: #757575;
    }

@media only screen and (min-width: 1000px) {
    .join-option {
        width: 32%;
    }
}
@media only screen and (max-width: 1000px) {
    .join-option {
        width: 48%;
    }
}

@media only screen and (max-width: 770px) {
    .join-option {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }
}
