.post-card {
    display: flex;
    flex-direction: column;
    max-height: fit-content;
    max-width: 400px;
    overflow: hidden;
    margin: 2em auto;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .5));
}

.post-header {
    background: #9AADBC;
    background: linear-gradient(0deg, rgba(154, 173, 188, 1) 0%, rgba(174, 191, 205, 1) 100%);
    border-radius: 5px 5px 0 0;
    text-align: right;
    padding: 0 1em;
    display: flex;
    color: #354b5c;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .3));
}

.post-body {
    background: #e6ebef;
}

.post-body > :not(.post-gallery) {
    margin: 2em;
}

form > p {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

input[name="username"], input[name="password"] {
    width: 70%;
}

input[type="submit"] {
    float: right;
    margin-bottom: 1em
}

.post-stats {
    background: #9AADBC;
    background: linear-gradient(0deg, rgba(154, 173, 188, 1) 0%, rgba(174, 191, 205, 1) 100%);
    border-radius: 0 0 5px 5px;
    text-align: right;
    padding: 0.5em 1em;
    display: flex;
    color: #354b5c;
    min-height: 1em;
}

.new-account {
    width: calc(100% - 1em);
}