body {
    margin: 0px;
    padding: 0px;
    background: #eeeeee;
}

div, #logo {
    /*border: 1px solid red;*/
}

.ppi-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    font-family: 'Montserrat', serif;
    flex-direction: column;
}

.ppi-header {
    height: 80px;
    flex: none;
    padding: 8px;
    background: linear-gradient(to right, rgba(238,238,238,0) 40%, rgba(188,224,224, 0.5) 100%);
}

.ppi-footer {
    height: 30px;
    flex: none;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    padding: 6px;
    text-align: center;
    background: linear-gradient(to left, rgba(238,238,238,0) 60%, rgba(188,224,224, 0.5) 100%);
}

.ppi-body {
    flex: auto;
    flex-direction: row;
    display: flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: calc(100% - 110px);
    background-image: radial-gradient(rgba(255,255,255,0) 60%, rgba(238,238,238, 1) 100%), url("/static/images/background.png");
    border-top: 3px solid rgba(16,119,159, 0.25);
    border-bottom: 3px solid rgba(16,119,159, 0.25);
}

.ppi-content {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(5,12,23, 0.8);
    border: solid 2px #f1f1f1;
    color: #ccc;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    border-radius: 3px;
    align-items: center;
    border-radius: 10px;
    width: 330px;
    margin: 32px auto;
    padding: 32px;
}

    .ppi-content .ppi-title {
        margin: 0px;
        text-align: center;
        padding-bottom: 10px;
    }

    .ppi-content .ppi-error {
        color: #d33;
    }
