html {
    margin: 0px;
    height: 100%;
    width: 100%;
}

body {
    margin: 0px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    /*background-image: url('../logo gv.svg');
    background-repeat:repeat;*/

}


.form-wrapper {
    display: block;
    width: max-content;
    height: max-content;
    margin: auto;
    align-self: center;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 8px 20px 0 rgba(30, 43, 90, 0.15);
    
}

:root[mb-agt="False"] .form-wrapper {

    padding: 2rem 2rem 0rem 2rem;

}

:root[mb-agt="True"] .form-wrapper {

    width:95%;
    padding: 0px 10px;
}



form > div:first-of-type {

    margin-top: 20px;
    display: flex;
}

:root[mb-agt="True"]  form > div:first-of-type {
    display: flex;
    flex-direction: column;
    
}


:root[mb-agt="True"] .form-contact {

    width:90%
}

:root[mb-agt="False"]  input[name="email"] {

    margin-right: auto;
    width: 35%;
    margin-left: 10px;
}


:root[mb-agt="False"] #select_obj {

    width: 50%;
    margin-left: 10px;
}

#select_obj  > option[value=""] {

    display: none;

} 

#id_message {

    margin-top: 20px;
    min-height:400px; 
}

:root[mb-agt="False"] #id_message {
    width:100%;
    min-width:500px; 
}

:root[mb-agt="True"] #id_message {
    width:100%;
}    

.form-actions{

    display: flex;
    justify-content: center;

}

.form-actions > button {

    background-color: #282d87; /* #282d87   #007aff; */
    border-radius: 50px;
    border: 1px solid #282d87;
    height: 32px;
    padding-right: 20px;
    padding-left: 20px;
    color: white;
    margin-bottom: 20px;
}