body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    /* Clean white background */
    color: #212121;
    /* Dark grey for text for a softer contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
    /* Removed background-color and box-shadow for a flatter, more integrated look */
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100px;
    /* Smaller logo for a more subtle presence */
    height: auto;
    margin-bottom: 2rem;
    filter: none;
    /* Removed shadow for a flat, clean look */
}

.subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    /* Lighter grey for less emphasis */
    margin-top: 0.5rem;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: #E0E0E0;
    /* Light, subtle grey */
    margin: 2rem 0;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #757575;
    /* Medium grey for footer text */
    padding-top: 2rem;
    border-top: 1px solid #EEEEEE;
    /* Very light border */
}

.footer-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.copyright {
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .footer {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-nav {
        order: 2;
    }

    .copyright {
        order: 1;
        text-align: center;
    }
}