/* Body background */
body {
    background-color: white !important;
    color: #000; /* Optional: Adjust text color for readability */
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

/* Full-screen container */
#login-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left side: Logo */
#logo-section {
    flex: 1;
    background-color: white; /* Ensure white background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#logo-section img {
    max-width: 80%;
    height: auto;
}

/* Right side: Form */
#form-section {
    flex: 1;
    background-color: #2E363F;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff; /* White text for contrast */
}

#form-section .form-container {
    width: 100%;
    max-width: 400px;
}

#form-section .form-container h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

#form-section input[type="text"],
#form-section input[type="password"] {
    background: #444;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
}

#form-section input[type="text"]::placeholder,
#form-section input[type="password"]::placeholder {
    color: #ccc;
}

#form-section button {
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}

#form-section button:hover {
    background: #0056b3;
}

.pull-left, .pull-right {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #login-container {
        flex-direction: column;
    }

    #logo-section {
        flex: none;
        padding: 10px;
        text-align: center;
    }

    #logo-section img {
        max-width: 60%;
    }

    #form-section {
        flex: none;
        padding: 10px;
    }
}