/* CSS */
input[type="text"], input[type="number"], input[type="password"]
    {
        border: 1px solid #888;
    }
input[type="text"]:hover, input[type="number"]:hover, input[type="password"]:hover
    {
        border: 1px solid #222;
        cursor: pointer;
    }

input[type="submit"], input[type="button"]
    {
        border: 1px solid black;
        background-color: white;
        padding: 10px 20px;
    }
input[type="submit"]:hover, input[type="button"]:hover
    {
        cursor: pointer;
        background-color: #CCF;
        padding: 10px 20px;
        transition: 0.3s;
    }



*
    {
        padding: 0px;
        margin: 0px;
        box-sizing: border-box;
    }

body
    {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: stretch;
        align-items: stretch;
    }
form
    {
        text-align: center;
    }






#header  
    {
        display: flex;
        width:  100% !important;
        border: 1px solid black;
        flex-basis: 100%;
    }
#menu
    {
        display: flex;
        /*flex-wrap: nowrap;*/
        flex-basis: 100% !important;
    }
#content
    {
        border: 10px solid black;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;	
        flex-basis: 100%;
    }
#footer
    {
        border: 10px solid black;
        flex-basis: 100%;
        width: 100%;	
    }




.menu_link
    {
        color: red;
        padding: 10px;
        font-weight: bold;
        
    }
.menu_link:hover
    {
        font-weight: bold;
    }

.menu_link > li
    {
        list-style-type: none;
    }





.form-group {
        display: flex;
        align-items: center; /* Align text and input vertically */
        margin-bottom: 10px;
    }

.form-group label {
        width: 80px; /* Set a fixed width for labels */
        text-align: right;
        margin-right: 10px;
    }

.form-group input {
        flex: 1; /* Makes inputs flexible to align properly */
        padding: 5px;
    }

.center_block
    {   
        display: flex;
        padding: 40px 10%;
        border: 1px solid #bbb;
        justify-content: space-evenly;
        text-align: center;
    }






/*
@media only screen and (min-width: 601px) 
{
    
}*/