/*
 * @copyright   Copyright (C) 2010-2019 Combodo SARL
 * @license     http://opensource.org/licenses/AGPL-3.0
 */

html{
    overflow: hidden;
}
body{
    background-color: #f4f4f4;
}

/* orange arc dots */
body:before{
    content: "";
    width: 800px;
    height: 800px;
    position: absolute;
    left: -200px;
    bottom: -300px;
    background-size: cover;
    background-image: url('../asset/dots-orange.png');
}

/* grey arc dots */
body:after{
    content: "";
    width: 500px;
    height: 500px;
    position: absolute;
    right: 40px;
    top: -200px;
    background-size: cover;
    background-image: url('../asset/dots-grey.png');
}

/* login body */
#login-body {
    display: flex;
    flex-direction: column;
    background-color: unset;
}

/*login header*/
#login-header{
    margin: auto 60px;
}

#login-header img{
    width: 300px;
}

/*login footer*/
#login-footer{
    margin: auto 60px;
}

#login-logo {
    margin: unset;
    padding: unset;
    width: unset;
    height: unset;
    position: static;
    text-align: right;
}

#login-logo img {
    max-height: 110px;
}

/*login content*/
#login-content{
    /* raz original login content style */
    position: unset;
    border: unset;
    margin-top: unset;
}

#login-content-container {
    width: 100%;
    min-height: 450px;
    border: 3px solid #CBD2D9;
    border-radius: 3px;
    background-color: #fff;
    color: #37322f;
    font-size: 12px;
    max-width: 740px;
    max-height: 450px;
    display: inline-flex;
    margin: auto;
}
#login-content-container h1 {
    color: #1C94C4;
    font-size: 16pt;
    font-weight: normal;
}
#login-additional-content{
    width: 50%;
    margin-top: unset;
    display: inline-block;
    border: 0;
    position: relative;
    vertical-align: middle;
    padding: 20px 0px;
}
#login-additional-content
{
    background-color: #F7FAFC;
    background-image: url('../asset/bg-world.png');
    background-repeat: no-repeat;
    background-position: center;
}
#login-additional-content > div{
    margin-left: 15%;
    width: 70%;
    margin-top: 25%;
}
.login-additional-content-title{
    font-size: 26px;
    color: #555656;
}
.login-additional-content-text{
    font-size: 16px;
    color: #555656;
    padding: 5px 0;
    text-align: justify;
}
.login-additional-content-button{
    width: 100%;
    font-size: 13.5px;
    margin-top: 10px;
    background-color: #ED8936;
    padding: 0.1em;
    border-radius: 0.25em;
    color: #eee;
    border: 0;
    height: 2.2em;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
    min-width: 150px;
}
.login-additional-content-button > a {
    color: #fff;
    font-size: 14px;
}
.login-additional-content-button > a:hover {
    text-decoration: none;
}
#login-links a, #login-links a:visited{
    color: #37322f;
}
#login-links a:hover, #login-links a:active{
    color: #ED8936;
    text-decoration: none;
}

@media screen and (max-width: 740px) {
    #login-body {
        margin: 0px;
    }
    #login-content-container{
        flex-direction: column;
        max-height: unset;
    }
    #login-additional-content {
        width: 100%;
    }
    #login-additional-content > div{
        margin-top: 0;
    }
}
