#join {
    max-width: 900px;
    margin: auto;
}

#join {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

#joinTitle {

}

#joinPlan {
    text-align: center;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    padding: 30px 20px;
    background-color: white;
    max-width: 350px;
    margin: 0 auto 40px;
}

#joinPlanCircle {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--red);
    border-radius: 50%;
}

#joinPlanCircleLogo {
    width: 30px;
    height: auto;
    color: white;
}

#joinPlanTitle {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 12px;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 12px;
}

#joinPlanPrice {
    font-size: 19px;
    margin-bottom: 15px;
}

#joinPlanDescription {
    font-size: 15px;
    margin-bottom: 15px;
}

#joinPlanLink {
    color: #999999;
    font-size: 15px;
    text-decoration: underline;
    font-weight: 500;
}

#joinForm {

}

#joinPaymentElement {
    margin-bottom: 20px;
}

#joinFormLegal {
    font-size: 12px;
    margin-bottom: 20px;
}

.joinFormCheckbox {
    display: none;
}

.joinFormCheckboxInput {
    opacity: 0;
    height: 0;
    width: 0;
    position: absolute;
}

.joinFormCheckboxBody {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    transition: .3s ease;
}

.joinFormCheckboxBody:hover {
    cursor: pointer;
}

.joinFormCheckboxInput + .joinFormCheckboxBody {
    transition: .5s ease;
}


.joinFormCheckboxBodyBox {
    height: 20px;
    width: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
    padding: 1px;
}

.joinFormCheckboxInput + .joinFormCheckboxBody .joinFormCheckboxBodyBoxCheck {
    opacity: 0;
    transform: scale(.8);
    transition: .3s cubic-bezier(.25, .8, .25, 1);
}

.joinFormCheckboxInput:checked + .joinFormCheckboxBody .joinFormCheckboxBodyBoxCheck {
    opacity: 1;
    transform: scale(1);
}

.joinFormCheckboxBodyTxt {
    font-size: 14px;
    line-height: 1.4;
}

.joinFormCheckboxBodyTxt a {
    color: var(--red);
    text-decoration: underline;
}

.joinFormCheckboxBodyTxtSmall {
    display: block;
    font-size: 12px;
    line-height: 1.4;
}

.joinForm {
    margin-top: 20px;
}