/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .group_join {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 60px;
    padding-bottom: 90px;
    display: flex;
    flex-direction: column;
 }

.group_join h3 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 200;
    margin: 0 0 30px 0;
}

.group_join .error {
    color: red;
}

.group_join .field {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.group_join .btn {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.group_join .field_check {
    padding: 15px 0px;
}

.group_join .checkbox {
    padding-left: 30px;
    display: block !important;
    align-items: baseline;
    line-height: 1.5 !important;
    font-size: 17px;
    position: relative;
    cursor: pointer;
    color: inherit;
    text-transform: none;
    font-weight: 400;
    margin-bottom: .25rem;
}

.group_join .input-checkbox {
    position: absolute;
    left: 0;
    margin: 0 !important;
    top: 5px;
    display: inline;
    margin: -2px 8px 0 0;
    text-align: center;
    vertical-align: middle;
}

.group_join .input-text {
    border: 1px solid #c4c4c4;
    font-weight: 100;
    font-size: 18px;
    line-height: 20px;
    display: block;
    width: 100%;
    background: #fff;
    color: #1A1A24;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    padding: 15px 30px;
    -webkit-transition: padding .3s ease;
    transition: padding .3s ease;
}

.group_join .field_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.group_join .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #000;
}

/* When the checkbox is checked, add a blue background */
.group_join .field_check input:checked ~ .checkmark {
    background-color: #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.group_join .field_check input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.group_join .field_check .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.group_join .group_content {
    margin-bottom: 40px;
}

.group_join .group_image {
    width: 100%;
    margin-bottom: 40px;
}
