body {
    font-family: "Poppins", sans-serif;
    padding: 40px 25px;
}

.logo {
    display: flex;
    justify-content: center;
    /*margin-bottom: 40px;*/
}

.logo img {
    width: 70px;
}

h1 {
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 0.9em;
}

strong {
    font-weight: bold;
}

h1,
strong,
a {
    color: #1e40af;
}

a {
    font-weight: 500;
}

strong {
    /*display: block;*/
    margin-top: 30px;
    margin-bottom: -12px;
    font-size: 1.1em;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.loader-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: inline-block;
    border-top: 0.4rem solid #d51317;
    border-right: 0.4rem solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


table p {
    font-size: 8px;
}

table {
    border-spacing: 0px;
}

td {
    border: black 1px solid;
}