.FormContainer{
    background-color : #fff;
    border-radius: 12px;
    box-shadow: 0 5px 5px #00000040;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto;
    justify-content: flex-start;
    overflow: visible;
    position: relative;
    transform: perspective(1200px);
    width: 100%;
}
.Form{
    flex-Direction: column;
    align-Items: left;
    font-Family: "Inter", "sans-serif";
    font-Size: 18px;
    color: black;
    padding: 24px;
    background-Color: white;
    border-Radius: 8px;
    box-Shadow: 0 0 8px 0 rgba(0, 0, 0, 0.0);
}
.Input, select{
    border-width: 1px;
    border-color: #d5d8d6;
    border-style: solid;
    box-sizing:bo
    border-radius: 8px;
    box-shadow: 0 1px 2px #1018280d;
    height: min-content;
    overflow: hidden;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    margin-bottom: 24px;
    box-sizing: border-box;
}
select{
    height: 45px;
}
.Label{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: rgba(66, 72, 68, 1);
}
.FormDoubleColumn{
    display: flex;
    place-content: flex-start;
    flex-flow: row nowrap;
    flex: 0 0 auto;
    gap: 16px;
    height: min-content;
    overflow: visible;
    padding: 0px;
    position: relative;
    width: 100%;
}
.FormColumn{
    place-content: flex-start;
    align-items: self-start;
    display: flex;
    flex: 1 0 0px;
    flex-flow: column nowrap;
    gap: 6px;
    height: min-content;
    overflow: visible;
    padding: 0px;
    position: relative;
}
@media screen and (max-width: 809px){
    .FormDoubleColumn{
        display: block;
    }
}