#form_con {
    justify-self: center;
    margin: 50px;
    width: 500px;
    background-color: var(--object-main-color-light);
    display: grid;
    grid-template-columns: auto auto;
    align-items: start;
    padding: 20px;
    justify-content: center;
    column-gap: 40px;
    *{
        margin: 3px;
    }
}

.input_con {
    width: 200px;
    padding: 10px;
    height: 70px;
    display: flex;
    flex-direction: column;
}
.form_wide{
    grid-column: span 2;
    width: 460px;
}

.text {
    background-color: gray;
    outline: 1px solid black;
}

label {
    color: var(--darkgray-text);
}


input,
select,
option {
    background-color: var(--form-input-background);
    color: white;
    height: 25px;
}

select:hover,
option:hover {
    background-color: var(--form-input-background-selected);
}
.checkbox{
    font-size: 16px;
    height: fit-content;
    align-items: center;
}
#submit_button_con{
    justify-self: center;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}
#payment_form_options_con{
    margin-top: 30px;
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    a{
        text-decoration: none;
        color: white;
        padding: 5px;
    }
}
#goback{
    background-color: var(--lightgray);
    margin-right: auto;
    width: 100px;
    text-align: center;
    color: rgb(220, 220, 220);
}
#pay{
    width: 100px;
    margin-left: auto;
    background-color: var(--green-button);
    color: rgb(220, 220, 220);
}