#section-aanmelden {
    padding: 150px 0 100px 0;
    background: var(--gradientr);
}

#aanmelden-header {
    max-width: 730px;
    border-radius: 20px;
    padding: 50px 70px;


    background-color: rgba(215, 255, 181, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    box-shadow: var(--shadow-light);
    margin-bottom: 50px;
}

#aanmelden-header h2 {
    font-size: 25px;
    line-height: 32px;
    margin: 0;
    font-family: var(--font-text);
}

#aanmelden-header p {
    font-size: 60px;
    line-height: 70px;
    margin: 0;
    font-family: var(--font-heading);
}

#aanmelden-grid {
    display: grid;
    column-gap: 50px;
    row-gap: 40px;
    grid-template-columns: calc(50% - 25px) calc(50% - 25px);

    grid-template-areas:
        "company-header contact-header"
        "company-content contact-content"
        "entry-header entry-add"
        "entries entries";
}

#aanmelden-company-header { grid-area: company-header; }
#aanmelden-contact-header { grid-area: contact-header; }
#aanmelden-company-content { grid-area: company-content; }
#aanmelden-contact-content { grid-area: contact-content; }
#aanmelden-entries { grid-area: entries; }

.aanmelden-item {
    display: flex;
    flex-direction: column;
}

.aanmelden-item p a {
    text-decoration: underline;
    color: inherit;
}

.aanmelden-content {
    border-radius: 20px;
    background-color: var(--color-primary);
    padding: 40px 60px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    position: relative;
    z-index: 2;
}

.aanmelden-content textarea {
    height: 100px;
    flex-shrink: 0;
    flex-grow: 1;
}

#section-aanmelden .grow {
    flex-grow: 1;
    flex-direction: column;
}

.aanmelden-item h2 {
    font-size: 24px;
    line-height: 30px;
    font-family: var(--font-heading);
    margin: 0 0 40px 0;
}

.aanmelden-item > p {
    margin: 0;
    font-size: 16px;
    line-height: 30px;
}

.aanmelden-item .form-row p {
    margin: 20px 0 0 0;
    font-size: 16px;
    line-height: 20px;
}

.aanmelden-item p + p {
    margin-bottom: 30px;
}

#aanmelden-entries {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    flex-direction: row;
    transition: height 0.5s ease-out;
}

.aanmelden-entry {
    width: calc(50% - 25px);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.aanmelden-entry {
    width: calc(50% - 25px);
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 350ms ease-out;
}

#aanmelden-entry-add,
.aanmelden-entry-remove {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.aanmelden-entry:first-of-type .aanmelden-entry-remove {
    display: none;
}

.aanmelden-entry-remove {
    position: relative;
    margin-bottom: 20px;
    transition: all 350ms ease-out;
    z-index: 0;
}

.aanmelden-entry:not(.init) .aanmelden-entry-remove {
    transform: translateY(100px);
    opacity: 0;
}

.aanmelden-entry:not(.init) {
    transform: scale(0.9);
    opacity: 0;
}

#aanmelden-entry-add-button {
    transition: opacity 250ms linear;
}

#aanmelden-entry-add-button.hide {
    opacity: 0;
}

.aanmelden-entry:nth-of-type(2) #aanmelden-entry-add-button{
    margin-top: 100px;
}

#aanmelden-entry-header {
    margin-bottom: 40px;
}

.form-address input:first-of-type {
    width: calc(65% - 10px);
}
.form-address input:last-of-type {
    width: calc(35% - 10px);
}


#section-aanmelden .form-row:not(.form-address) ::-webkit-input-placeholder {
    color: transparent;
    opacity: 0;
    visibility: hidden;
    display: none;
}

#section-aanmelden .form-row:not(.form-address) :-ms-input-placeholder {
    color: transparent;
    opacity: 0;
    visibility: hidden;
    display: none;
}

#section-aanmelden .form-row:not(.form-address) ::placeholder {
    color: transparent;
    opacity: 0;
    visibility: hidden;
    display: none;
}