.events-wrapper {
    height: fit-content;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 35px;
}

.events-section {
    height: fit-content;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 26px;

    padding-bottom: 16px;
    border-bottom: #D9D9D9 1px solid;
}

.events-section__header, .form__stay-informed__header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.events-section__header-title, .form__stay-informed__header-title {
    height: fit-content;
    width: fit-content;
    padding: 4px 20px 4px 12px;

    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;

    color: #FFFFFF;
    background-color: #3C486B;

    margin: 0px;
}

.events-section__header::after, .form__stay-informed__header::after {
    content: "";

    width: 0;
    height: 0;

    border-style: solid;
    border-width: 14px 0 14px 18px;
    border-color: transparent transparent transparent #3C486B;
}

.events-section__body {
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 16px;
}

/* Form - "Stay Informed" */
.form__stay-informed {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 12px;
}

.form__stay-informed__body {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 24px;
}

.form__stay-informed__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;

    color: rgba(36, 36, 36, 0.8);
}

.form__stay-informed__fields {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 17px;
}

.form__stay-informed__fields .field-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;

    width: 100%;
    min-height: 40px;

    background: #FFFFFF;
    border: 1px solid #E2E2E2;
    border-radius: 5px;
}

.form__stay-informed .submit-btn {
    min-height: 40px;
    height: 52px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;

    color: #FFFFFF !important;
    border: 1px solid #3B496A;
    background: #3B496A;
    border-radius: 5px;

    transition: opacity 0.25s;
}

.form__stay-informed .submit-btn:hover {
    opacity: 0.70;
}

.form__stay-informed .submit-btn:disabled {
    opacity: 0.5;
}

.approval-wrapper {
    max-width: 565px;
}

.field-checkbox__label {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 12px;

    cursor: pointer;
    padding: 0px !important;
    margin: 0px !important;
}

.field-checkbox__label-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;

    color: #959595;

    transition: opacity 0.25s;
}

.field-checkbox__label-text:hover {
    opacity: 0.75;
}

.field-checkbox__label::before {
    width: 20px !important;
    height: 20px !important;
    min-height: 20px !important;
    min-width: 20px !important;

    margin-top: 3px;
    position: static !important;
}

.field-checkbox__input:checked + .field-checkbox__label::after {}
