html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%; /* Ensure the body takes full height */
    overflow: hidden; /* Hide scrollbars */
}

.image-container {
    flex: 1; /* Take remaining space */
    background-image: url('./images/welcome-img.svg'); /* Background image */
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    min-height: 50%; /* Ensure the image container has a minimum height */
    margin: 0;
}

.login-container {
    background: none; /* Slightly more transparent background */
    padding: 20px; /* Padding for the container */
    width: 350px; /* Set a width for the form */
    display: flex;
    flex-direction: column; /* Arrange elements in a column */
    justify-content: center; /* Center items vertically */
    position: absolute; /* Absolute positioning for overlay effect */
    top: 65%; /* Position slightly below the center */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Center the container */
    z-index: 1; /* Ensure it sits above the background */
}

.login-container h2 {
    text-align: left; /* Align heading to the left */
}

.login-container label {
    display: block; /* Makes the label a block element */
}

.login-container input {
    width: 100%; /* Full width */
    padding: 10px; /* Padding inside the input */
    border: 1px solid #ccc; /* Light border */
}

.login-container button {
    width: 100%; /* Full width */
    padding: 10px; /* Padding inside the button */
    border: none; /* No border */
    background-color: #007BFF; /* Button color */
    color: white; /* Text color */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
}

.login-container button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.info-text {
    text-align: left; /* Align the sign-up link to the left */
}