﻿html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.contentDefault {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
    min-height: 100vh;
    background: #3A4D73;
    padding: 10px;
}

.contentLogin-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 90%;
    max-width: 700px;
    min-width: auto;
    height: auto;
    padding: 2vw;
    padding-bottom: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 0;
    border-bottom: solid 20px #199cff;
    margin-bottom: 60px;
}


    .contentLogin-body:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.3;
        z-index: -1;
    }

    .contentLogin-body .contentLogin-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        min-width: 270px;
    }

        .contentLogin-body .contentLogin-header .logos {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .contentLogin-body .contentLogin-header .logos img {
                margin: 5px;
                max-width: 100%;
                height: auto;
            }

        .contentLogin-body .contentLogin-header .mensagem {
            color: #3A4D73 !important;
            -webkit-text-stroke-width: 2px;
            -webkit-text-stroke-color: #3A4D73;
            font-weight: bold;
        }

            .contentLogin-body .contentLogin-header .mensagem h2 {
                font-size: 2rem;
            }

    .contentLogin-body #content .text_titulo h1 {
        font-size: 1.6rem;
    }

    .contentLogin-body #content {
        width: 100%; /* Ajustado para responsividade */
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center; /* Centraliza verticalmente */
    }


        .contentLogin-body #content .content_home {
            margin: 0;
            width: 70%;
            border: none;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }

            .contentLogin-body #content .content_home hr {
                margin: 0;
                margin-top: 5px;
                padding: 0;
            }

            .contentLogin-body #content .content_home .panel {
                padding: 1.3vw;
            }

.footer {
    width: 100%;
    background-color: #eee;
    color: black;
    padding: 10px;
    position: fixed;
    bottom: 0;
    text-align: right;
}

    .footer a {
        color: black;
    }

@media only screen and (min-width: 768px) {
    html.fixed .contentLogin-body {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .contentLogin-body {
        margin-top: 20px;
    }

        .contentLogin-body .contentLogin-header {
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #fff;
            text-align: center;
        }

        .contentLogin-body #content .content_home {
            min-height: auto;
            height: auto;
        }

            .contentLogin-body #content .content_home .panel {
                min-height: auto;
                height: auto;
                padding: 0;
                margin: 0;
            }

        .contentLogin-body #content .text_titulo h1 {
            font-size: 3vw;
        }

        .contentLogin-body #content .text_titulo {
            padding: 0;
            margin: 0;
        }

        .contentLogin-body .contentLogin-header .mensagem {
            padding-top: 10px;
        }

            .contentLogin-body .contentLogin-header .mensagem h2 {
                font-size: 6vw !important;
            }

    .footer {
        position: relative;
    }
}
