﻿body, html {
    height: 100%;
    margin: 0;
    font-family: sans-serif;
}

.login-body {
    background-image: url('imagens/logo_rodape.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    height: calc(100vh - 78px); /* Altura total menos a altura do header */
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    text-align: center;
    color: #095698;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: orange;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 10px;
}