body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Nunito, sans-serif;
}

body {
    background: url(../assets/bg.png) center center fixed;
    background-size: cover;
    overflow-y: auto;
}

.screen-login {
    height: 100%;
    margin: auto;
    display: table;
}

.align-login {
    width: 100% !important;
    height: 100%;
    display: table;
}

.box {
    text-align: center;
    padding: 10px;
    display: table-cell;
    vertical-align: middle;
}

.box img {
    max-width: 500px;
    width: 100%;
    clear: both;
    display: inline-block;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.box img:hover {
    transform: scale(1.02);
}

/* Animações do Animate.css que estão sendo usadas */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/* Estilos responsivos */
@media (max-width: 767px) {
    .box img {
        max-width: 90%;
    }
}
