.send {
    padding: 150px 0;
    background: url('../images/BG_send_top.svg') center -1px no-repeat,
                url('../images/BG_send_bottom.svg') center calc( 100% + 2px ) no-repeat;
    background-size: 100% auto;
    background-color: var(--mainGreen);
}

.send_box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 50px 0;
}

.send_box > * + * {
    margin-top: 25px;
} 

.send_table {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.send_table_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.send_table_row + .send_table_row {
    margin-top: 15px;
}

.send_section {
    flex: 1;
}

.send_section * {
    text-align: center;
}

.send_section + .send_section {
    margin-left: 15px;
}

.send_table input,
.send_table select {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    line-height: 30px;
    font-size: 16px;
    border: 0;
    border-radius: 50px;
}

.send_table select {
    appearance: none;
    background: white url('../images/arrow.svg') no-repeat;
    background-size: auto 10px;
    background-position: calc( 100% - 15px ) center;
}

.send_button_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.checkbox_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
    line-height: 35px;
    color: var(--fontColor);
}

.checkbox_section input[type='checkbox'] {
    display: none;
}

.checkbox_section input[type='checkbox'] + label {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border: white 4px solid;
    border-radius: 25px;
    background: white;
}

.checkbox_section input[type='checkbox']:checked + label {
    background: var(--deepBlue);
}

.checkbox_section a {
    color: var(--fontColor);
    text-decoration: underline;
}



@media screen and (max-width: 1023px) {

    .send {
        padding: 75px 0;
        background-size: 240% auto;
    }

    .send_box {
        margin: 0;
    }

    .send_title {
        font-size: 20px;
    }
    
    .send_title .focus {
        margin-top: 5px;
    }

    .send_table {
        flex-direction: column;
        align-items: stretch;
    }

    .send_table_row {
        flex-direction: column;
    }

    .send_table_row + .send_table_row {
        margin-top: 5px;
    }
    
    
    .send_section + .send_section {
        margin-left: 0;
        margin-top: 5px;
    }
    

    .send_section {
        width: 100%;
        margin-bottom: 10px;
    }

    .send_button_area {
        flex-direction: column;
        border-top: 0;
    }

}