html{
    font-family: sans-serif;
    font-weight: 400;
    background: #424242;
    color: #ffffff;
}

body{
    min-width: 320px;
    overflow-x: hidden;
}

html, body, #wrapper{
    height: 100%;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Lora', serif;
}

#content{
    display: flex;
    height: 100%;
}


.p-not-found #content{
    align-items: center;
    justify-content: center;
}


#content-left{
    height: 100%;
    flex: 1 1 0;
    max-width: 100%;
}
#content-right{
    background-image: url(../img/login-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    height: 100%;
    width: 520px;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative;
}

header, footer {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}




header{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0,0,0,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
}

#logo{
    display: block;
    max-width: 120px;
}
#logo > img{
    display: block;
}

header .language-menu{
    margin-left: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


main{
    padding: 0 30px;
}

main h1{
    font-size: 1.5em;
}


footer{
    padding: 15px 30px;
    background-color: rgba(0,0,0,.2);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.3);
}

#copyright{
    text-align: center;
    font-size: 14px;
}


.socials-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display:-webkit-box;
    display:-ms-flexbox;
    display: flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    margin-bottom: 15px;
}
.socials-list > li > a{
    display: block;
    text-align: center;
    transition: all 300ms linear;
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 5px;
    color: #ffffff !important;
    text-decoration: none;
}
.socials-list > li > a:hover{
    background: #ffffff;
    color: #0c2636 !important;
    text-decoration: none;
}