#fundraiserApplyHero {
    background: var(--lime-green);
    position: relative;
    padding: 89px 0;
    height: calc(100% - 50px);
    overflow: hidden;
}

#fundraiserApplyHero::after {
    left: 0;
    content: "";
    background: #FFFFFF;
    position: absolute;
    width: 100%;
    height: 100px;
    clip-path: polygon(0 36%, 100% 0, 100% 100%, 0% 100%);
    bottom: -50px;
}


#fundraiserApplyHeroInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

#fundraiserApplyHeroTitle {
    margin: -50px 0 0 0;
    color: #FFFFFF;
    font-size: 74px;
    line-height: 1;
}

#fundraiserApplyInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.fundraiserApplyAgreementTitle {
    font-size: 65px;
    margin: 0;
    color: var(--primary-green);
    font-weight: 400;
}

.fundraiserApplyAgreementText {
    font-size: 21px;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-weight: 600;
}

#fundraiserApplyAgreementAction, #fundraiserApplyCharityAction {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
}

#fundraiserApplyAgreementAction.error, #fundraiserApplyCharityAction.error {
    border: 2px solid var(--barn-red);
    padding: 20px;
    position: relative;
}

#fundraiserApplyAgreementAction.error::before, #fundraiserApplyCharityAction.error::before {
    content: "Please agree to the terms before continuing";
    position: absolute;
    left: 30px;
    background: #FFFFFF;
    top: -15px;
    padding: 0 10px;
}

#fundraiserApplyAgreementActionText, #fundraiserApplyCharityActionText {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    color: var(--lime-green);
    font-weight: 700;
    max-width: 400px;
}

#fundraiserApplyAgreementActionTosInput, #fundraiserApplyCharityActionInput {
    display: block;
    border-radius: 100vh;
    width: 20px;
    height: 20px;
    border: 2px solid var(--lime-green);
    flex-shrink: 0;
    margin-right: 20px;
    appearance: none;
}

#fundraiserApplyAgreementActionTosInput:checked, #fundraiserApplyCharityActionInput:checked {
    background: var(--lime-green);
}

#fundraiserApplyAgreementActionButton, #fundraiserApplyCharityActionButton {
    border-radius: 100vh;
    width: fit-content;
}

.fundraiserApplyFormSection {
    margin-bottom: 100px;
}

.fundraiserApplyFormSectionTitle {
    font-size: 65px;
    margin: 0;
    color: var(--primary-green);
    font-weight: 400;
}

.fundraiserApplyFormSectionText {
    font-size: 21px;
    font-weight: 700;
    color: var(--lime-green);
    margin-top: 0;
}

.fundraiserApplyFormSectionGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

#fundraiserApplyFormLocationSelect {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid var(--lime-green);
    border-radius: 6px;
}

.fundraiserApplyFormSectionInputGroup {
    margin-bottom: 30px;
}

.fundraiserApplyFormSectionInputGroupLabel {
    text-transform: uppercase;
    color: var(--primary-green);
    padding-left: 10px;
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.fundraiserApplyFormSectionInputGroupLabel::after {
    content: attr(data-info);
    font-size: 9px;
    margin-left: 5px;
    color: var(--primary-green);
    text-transform: none;
    font-weight: 400;
}

.fundraiserApplyFormSectionInputGroupControl {
    border: 1px solid var(--lime-green);
    border-radius: 6px;
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 700;
}

.fundraiserApplyFormSectionInputGroupControl::placeholder {
    color: var(--lime-green);
    font-weight: 700;
    text-transform: uppercase;
}

#organizationLogoInput {
    display: none;
}

#organizationLogoInputButton {
    display: flex;
    justify-content: space-between;
    color: var(--lime-green);
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--lime-green);
    border-radius: 6px;
    font-size: 16px;
    padding: 10px;
}

#fundraiserApplyFormButton {
    font-size: 20px;
    border-radius: 100vh;
    width: fit-content;
    margin-left: auto;
}

@media (max-width: 800px) {
    .fundraiserApplyAgreementTitle {
        font-size: 50px;
    }

    .fundraiserApplyFormSection {
        margin-bottom: 50px;
    }

    .fundraiserApplyFormSectionTitle {
        font-size: 50px;
    }

    .fundraiserApplyFormSectionText {
        font-size: 21px;
    }

    .fundraiserApplyFormSectionGrid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    #fundraiserApplyHeroTitle {
        font-size: 50px;
    }

    #fundraiserApplyAgreementAction {
        display: grid;
        grid-template-columns: repeat(2, auto);
        flex-direction: column;
    }

    #fundraiserApplyAgreementActionButton {
        grid-column: 2/3;
    }

    #fundraiserApplyCharityAction {
        display: grid;
        grid-template-columns: repeat(2, auto);
        flex-direction: column;
    }

    #fundraiserApplyCharityActionButton {
        grid-column: 2/3;
    }
}