body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.login-container {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-form {
    padding: 20px;
    width: 300px;
}

/* Modified to use the login-title-container */
.login-form h2 {
    text-align: left; /* Adjusted text alignment */
    margin-bottom: 0px; /* Adjusted margin */
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%; /* Adjust for padding and border */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #0056b3;
}

.login-image {
    width: 250px;
    overflow: hidden;
}

.login-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* login-title-container Styles */
.login-title-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    justify-content: flex-start; /* Align to the left */
}

.login-title-container h2 {
    font-size: 2.5em;
    margin: 0 10px 0 0; /* Add right margin to separate "NiSi" */
    color: purple;
    font-weight: normal;
}

.login-title-container p {
    font-size: 1em;
    margin: 0; /* Remove default margins */
    color: #888;
    align-self: flex-start;
}