.login-form {
    width: 20rem;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
}

.login-form h3 {
    margin-top: 0;
    margin-bottom: 0;
    /* Remove default margin */
    font-size: 2em;
    /* Adjust size as needed */
    color: #333;
    text-align: center;
}

.login-logo {
    width: 150px;
    /* Adjust size as needed */
    height: auto;
    /* Maintain aspect ratio */
    margin-bottom: 15px;
    display: block;
    align-items: center;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

.flex-container {
    display: flex;
    justify-content: center;
    /* Horizontally centers content */
    align-items: center;
    /* Vertically centers content */
    min-height: 100vh;
    /* Makes the container at least full viewport height */
    background-color: #ffffff;
}