body, #logged_in_content {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Ensures the body takes up the full viewport height */
    height: 100dvh; /* Ensures the body takes up the full viewport height */
    margin: 0; /* Removes default margin */
}

#content {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 20px); /* Ensures the body takes up the full viewport height */
    height: calc(100dvh - 20px); /* Ensures the body takes up the full viewport height */
    margin: 0; /* Removes default margin */
}

[hidden]{
    display:none !important;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    padding: 10px 15px;
    margin-top: 2px;
    background-color: #ddd;
    color: #111;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button.primary {
    background-color: #1E91EF;
    color: #ffffff;
}

input:invalid {
    border: 1px dashed #ef1f2a;
}
input:valid {
    border: 1px solid #aaa;
}

.page_content {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: min(600px, 95%);
}

.framed {
    border: 1px solid #aaa;
    height: calc(100vh - 48px);
    height: calc(100dvh - 48px);
}