body{
    margin: 0;
}
.background{
    background: url('../images/login-bg.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
}
.text-justify{
    text-align: justify;
}
/*.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}*/
.header{
    background-color: rgb(83, 150, 45);
    border: 0;
    border-radius: 0;
    min-height: 70px;
}
.logo{
    max-width: 150px;
}
.footer{
    background-color: rgb(83, 150, 45);
    width: 100%;
    text-align: center;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #ffffff;
}
.content{
    width: 50%;
}

.header, .footer, .content{
    position: relative;
    z-index: 2;
}
@media(max-width: 768px){
    .content{
        width: 90%;
    }
}