.form-container, .links-container {
    margin: 20px auto;
}

.links-container {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    gap: 48px;
    font-weight: bolder;
    font-size: large;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 20px;
}

.field-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.field-wrapper * {
    font-size: large;
}

label {
    display: block;
    font-weight: bolder;
}

input, textarea {
    display: block;
    padding: 8px;
    min-width: 0 !important;
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 3px 5px -2px rgba(0,0,0,0.75);
}

form button {
    margin: 0 0 0 auto;
}

@media screen and (width <= 720px) {
    .form-container, .links-container {
        width: 100%;
    }

    .links-container {
        grid-auto-flow: row;
    }

    .block-donation_button {
        margin: auto;
    }
}