.login-page-wrapper {
    height: 100%;
    width: 100%;
    background-color: #fff;
}

html, body {
    height: 100%;
    width: 100%;
}

#login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background-color: #fff;
}

#signup-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    h1, h2, h3, h4, h5, h6, p {
        color: #fff;
    }
    li {
        font-size: x-large;
        color: white;
    }
    height: 100%;
}

.signin-logo {
    height: 65px;
    object-fit: contain;
}

.partner-logo {
    height: 20px;
    object-fit: contain;
}

/* Tablet and Desktop (Medium screens and up) */
@media (min-width: 768px) {
    .partner-logo-container {
        border-left: 2px solid #838383;
        margin-left: 1rem;
        padding-left: 1rem;
    }

    .partner-logo {
        height: 30px; /* Full size on desktop */
        margin: 0.35rem 0;
    }
}

/* Mobile specific spacing */
@media (max-width: 765px) {
    .partner-logo-container {
        margin-top: 1rem; /* Space between main logo and partners when stacked */
    }
}