body{
    margin: 0px;
    font-family: Roboto Regular,sans-serif;
}
#container{
    width: 960px;
    margin: auto;
}
header{
    width: 100%;
    font-size: 70%;
    margin-bottom: 60px;
}
#header_top{
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #ddd;
    margin-top: 10px;
}
#header_top div:nth-child(1){
    flex: 1;
}
#logo_be{
    padding-bottom: 10px;
}
#header_below{
    display: flex;
    margin-top: 10px;
    margin-bottom: 20px;
}
#header_below div:nth-child(1){
    flex: 1;
}
#header_below div:nth-child(2){
    display: flex;
    align-items: center;
}
#header_below div p a{
    text-decoration: none;
    color: #4d618f;
    font-size: 130%;
    padding: 0px 10px;
}
#body{
    width: 100%;

}
#title{
    color: #4d618f;
    font-size: 200%;
}
#red_msg{
    background-color: #f7e7d6;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 5px;
    border-radius: 7px;
    margin-bottom: 10px;
    font-size: 90%;
}
#form_container div:nth-child(3){
    border: solid 1px #ddd;
    border-radius: 7px;
    padding: 20px;
    font-size: 90%;
}
#btn_redirect{
    border-radius: 999px;
    background-color: #4d618f;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}
footer{
    margin-top: 70px;
    margin-bottom: 30px;
    width: 100%;
    border-top: 1px solid #ddd;
    display: flex;
}
footer div:nth-child(1) a, footer div:nth-child(2) a{
    font-size: 75%;
    color: #4d618f;
    text-decoration: none;
}
footer div:nth-child(1) a:hover, footer div:nth-child(2) a:hover{
    color: #000;
}
footer div:nth-child(1){
    width: 205px;

}
footer div:nth-child(2){
    width: 205px;
}
footer div:nth-child(3){
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
#copyright{
    text-align: center;
    color: #696969;
    font-size: 80%;
}
.lang_btn{
    padding: 7px;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
}
#lang_selected{
    background-color: #4d618f;
    color: #fff;
}
#logo_be{
    float: right;
}



@media (max-width: 1000px) {
    #container{
        width: calc(100% - 40px);
        padding: 0px 20px;
        margin: auto;
    }
}
@media (max-width: 700px) {
    #header_other{
        display: none;
    }
    #navbar{
        display: none;
    }
    footer{
        display: block;
    }
}