body {
    background-image: url(../adm/images/fundo.jpg);
    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;

    /* Background image doesn't tile */
    background-repeat: no-repeat;

    /* Background image is fixed in the viewport so that it doesn't move when 
       the content's height is greater than the image's height */
        background-attachment: fixed;

    /* This is what makes the background image rescale based
       on the container's size */
    background-size: cover;
}
.logotipo_inicial{
    max-width: 200px;
    margin-bottom: 20px;
}
.logotipo {
    max-width: 162px;
    position: absolute;
    margin-top: 30px;
    margin-left: 30px;
}
.login {
    border-radius: 10px;
    width: 150px;
}
.panel-default>.panel-heading {
    border-radius: 18px 18px 0px 0px;
}
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #046e43;
}
.botao_login {
    background-color: #046e43;
    border-color: #046e43;
    color: white;
    font-weight: 600;
}

.botao_login:hover{
    background-color: #00cc79;
    border-color: #00cc79;
    color: white;
}

@media (max-width: 705px) {
    body {
        background-image: url(../adm/images/fundo.png);
        /* Background image is centered vertically and horizontally at all times */
        background-position: center center;

        /* Background image doesn't tile */
        background-repeat: no-repeat;

        /* Background image is fixed in the viewport so that it doesn't move when 
           the content's height is greater than the image's height */
        /*    background-attachment: fixed;*/

        /* This is what makes the background image rescale based
           on the container's size */
        background-size: auto;
    }
}