/* Imports from other sheets */
@import url(./mainStyle.css);

/* Content style */
#content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    padding: 0;
    margin: 0;
    top: 150px;
    left: 0;
    width: 100vw;
}

#formWrapper {
    height: auto;
    width: 94%;
    padding: 10px;
    background-color: rgb(51, 129, 106);
    border-radius: 20px;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,1);
    margin-bottom: 50px;
}

#donatieWrapper {
    height: auto;
    width: 94%;
    padding: 10px;
    background-color: rgb(51, 129, 106);
    border-radius: 20px;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,1);
}

#contact-form {
    display: grid;
    width: 100%;
    grid-template-columns: 20% 1fr;
    gap: 10px;
    justify-content: center;
}

label {
    margin: 10px 10px;
    font-size: 24px;
    place-self: start;
}

.formInput {
    height: auto;
    border: 2px solid rgb(0, 0, 0);
    background-color: rgb(220, 220, 220);
    border-radius: 5px;
    font-size: 20px;
    padding: 0 0 0 10px;
    margin-right: 10px;
}

#submitButton {
    margin-top: 30px;
    height: 50px;
    max-width: 300px;
    background-color: rgb(0, 238, 255);
    color: rgb(0, 0, 0);
    border: 1px solid black;
    border-radius: 5px;
    font-size: 32px;
}

#submitButton:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.formEnd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    grid-column: span 2;
}

/* Page title style */
.pageTitle {
    margin: 0;
    padding: 0 5%;
    font-size: 48px;
    text-align: center;
}

/* Text */
.pageText {
    margin: 30px 0;
    font-size: 24px;
    text-align: center;
    width: 100%;
}

.pageLink { color: rgb(175, 175, 255); }
.pageLink:hover { font-weight: 500; }

@media only screen and (max-width: 400px) { #donatieWrapper { margin-bottom: 20px; } }