/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Container Styling */
.container {
    display: flex;
    height: 100vh;
}

/* Left Section - Background Image */
.left-section {
    flex: 1;
    background: url('background.jpg') no-repeat center center/cover;
    position: relative;
}

/* Dark Overlay on Image */
.left-section .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.left-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* Right Section - Form */
.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

/* Form Styling */
form {
    width: 80%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #4a4a4a;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #004d00;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: #003300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-section {
        height: 40vh;
    }

    .right-section {
        height: 60vh;
    }

    .left-section h1 {
        font-size: 2.5rem;
    }
}
