body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f0f0f0; /* Or a similar light grey */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    display: flex;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 800px; /* Adjust as needed */
    max-width: 90%; /* Ensure responsiveness */
}

.left-panel {
    background: linear-gradient(to bottom, #008000, #006400); /* Darker green gradient */
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 40%; /* Adjust as needed */
}

.left-panel .logo img {
    width: 80px; /* Increased size for better visibility */
    margin-bottom: 10px;
}

.left-panel .logo span {
    font-size: 1.8em; /* Adjusted font size to match larger logo */
    font-weight: bold;
}

.left-panel .welcome-section h2 {
    margin-top: 0;
    font-size: 2em;
    margin-bottom: 10px;
}

.left-panel .welcome-section p {
    font-size: 1em;
    margin-bottom: 30px;
}

.left-panel .sign-in-button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 30px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.left-panel .sign-in-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.left-panel .footer-links span {
    font-size: 0.8em;
    opacity: 0.8;
}

.right-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%; /* Adjust as needed */
}

.right-panel .welcome-text h2 {
    margin-top: 0;
    font-size: 2em;
    color: #008000; /* Darker green */
    margin-bottom: 10px;
}

.right-panel .welcome-text p {
    font-size: 1em;
    color: #555;
    margin-bottom: 30px;
}

.right-panel form {
    width: 100%;
    max-width: 300px; /* Adjust as needed */
    text-align: center;
}

.right-panel .form-group {
    margin-bottom: 20px;
}

.right-panel input[type="email"],
.right-panel input[type="password"],
.right-panel input[name="username"],
.right-panel .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-sizing: border-box;
    font-size: 1em;
    text-align: center;
    background-color: #e0f2f1; /* Light green */
    border-color: #e0f2f1;
}

.right-panel .forgot-password {
    display: block;
    margin-bottom: 20px;
    color: #555;
    text-decoration: none;
    font-size: 0.9em;
}

.right-panel .log-in-button {
    background-color: #008000; /* Darker green */
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.right-panel .log-in-button:hover {
    background-color: #006400; /* Even darker green */
}

.right-panel .signup-link {
    margin-top: 20px;
    font-size: 0.9em;
    color: #555;
}

.right-panel .signup-link a {
    color: #008000; /* Darker green */
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 95%;
    }

    .left-panel,
    .right-panel {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .left-panel {
        justify-content: center; /* Center content vertically on small screens */
        padding-bottom: 20px;
    }

    .right-panel {
        padding-top: 20px;
    }

    .left-panel .logo img {
        width: 60px; /* Slightly smaller on mobile */
    }
    .left-panel .logo span {
        font-size: 1.5em; /* Slightly smaller on mobile */
    }
}
