.form-div{
    display: block;
    margin:5px;
    margin-bottom: 20px;
}
.form-btn-group{
    display: flex;
    margin-bottom: 20px;
    margin:5px;
    
}
.form-label{
    display: inline-block;
    max-width: 100%;
    width:100%;
    margin-bottom: 1px;
    font-weight: 700;
}
.form-select{
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-control{
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;

    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
:focus{
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}
.form-btn{
    width: 100%;
    color: #fff;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    margin: 1px;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-red{
    background-color: red;
    border-color: yellow;
}
.btn-blue{
    background-color: #007bff;
    border-color: #007baf;
}
.btn-green{
    background-color: green;
    border-color: greenyellow;
}
.form-btn:hover,
.form-btn.enabled:hover,
.form-btn.enabled:focus,
.form-btn.enabled:hover,
.form-btn.enabled:focus{
    background-color:darkslategrey;
    color: #ffffff;
    cursor: pointer;
}

body {
    margin: 10px;
    background-color: #fff;
    line-height: 1.42857143;
    color: #333;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
}