/* Reset margins and padding for the document */
html, body {
    font-family: 'Poppins', Arial;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 14px;
    background-color: #111827;
}

*, *:before, *:after {
    box-sizing: border-box;
}


#page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content-wrap {
    flex: 1;
}

.content {
    margin: auto;
    max-width: 100%;
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #eee;
}

.content h2 {
    color: #333; /* Dark color for contrast */
    margin-bottom: 20px; /* Space below the heading */
}

.content form {
    margin-bottom: 20px; /* Space below the form */
}

.content b {
    display: inline-block; /* Ensure it aligns correctly */
    margin-bottom: 10px; /* Space below the instruction text */
    color: #666; /* Slightly darker text for emphasis */
}

@media (max-width: 800px) {
    .content {
        min-width: 0; /* Allow content to shrink on small screens */
        padding: 10px; /* Adjust padding for smaller screens */
    }
}

