/* Aplica a imagem de fundo EXCLUSIVAMENTE quando houver a classe .bg-com-fundo */
body.bg-com-fundo {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../img/imgFundo1.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100vh !important;
    text-align: center;
}

/* Container centralizado para Home, Login e Cadastro */
.container1 {
    background-color: #00072d;
    padding: 40px;
    color: #f8f8d9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 100%;
}

.container1 h1 {
    font-size: 2.5rem;
    color: #f8f8d9;
    margin-bottom: 20px;
}

.container1 p {
    font-size: 1.25rem;
    color: #f8f8d9;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}