/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #d3d3cc; /* Soft Blue Background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Main Container */
.container {
    display: flex;
    width: 750px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Left Container */
.left-container {
    background: #1d5c06; /* Green */
    color: white;
    padding: 40px;
    width: 40%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left-container img {
    width: 150px; /* Adjust as needed */
    margin-top: 15px;
}

/* Right Container */
.right-container {
    width: 60%;
    padding: 40px;
    text-align: center;
}

.right-container h2 {
    color: #0d2903;
    font-size: 24px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    text-align: left;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="password"] {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

input:focus {
    border-color: #4EA72E;
    outline: none;
}

/* Button Styles */
button {
    background-color: #164105;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #E8F0FE;
    color: #4EA72E;
    transform: translateY(-2px);
}

/* Error Message */
.error {
    color: #f44336;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
    }

    .left-container {
        width: 100%;
        padding: 20px;
    }

    .right-container {
        width: 100%;
    }
}
