body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    font-family: "Times New Roman", Times, serif;
    position: relative;
    background: #000; /* fallback */
}

/* Imagem com blur */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(https://govbr.org/archive/Fotos/define3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    filter: blur(6px);
    z-index: -2;
    pointer-events: none;
}

/* Malha preta listrada */
body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.05) 0px,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 4px
    );
    z-index: -1;
    pointer-events: none;
}

/* Conteúdo */
h5 {
    font-weight: bold;
}

.login {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 93%;
    z-index: 1;
}

.card {
    border-radius: 3% 3%;
    z-index: 1;
}

table.table > :not(caption) > * > * {
    color: inherit;
    background-color: inherit;
}
