h2{
    padding: 0;
    margin: 0;
    justify-self: start;
    width: 100%;
}
.vormid-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.vorm-container{
    text-align: center;
    border: 2px solid black;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    width: fit-content;
    height: fit-content;
}
.vorm-container form {
    height: 100%;
    flex-direction: column;
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.card-header-container{
    padding-bottom: 10px;
    border-bottom:1px solid black;
}
.card-body-container{
    display: flex;
    flex-direction: column;
    justify-self: end;
    align-items: center;
}

.vorm-container form div {
    width: 100%;
    display: flex;
    justify-content:space-between ;
}
.vorm-container form div input, select{
    width: 50%;
}
.vorm-container form div select{
    width: 51%;
}
.vorm-container input, select, label{
    margin-top:10px;
}
.otsimine-container table td{
    width: 100px;
}
.otsimine-form-container{
    padding-bottom: 10px;
}

@media only screen and (max-width: 1096px){
    .vormid-container{
        flex-direction: column;
        row-gap: 25px;
    }
    .vorm-container{
        width: 100%;
    }
}