* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
}

.container {
    display: flex;
    height: 100vh;
}

/* LEFT SIDE */
.left {
    position: relative;
    width: 60%;
    height: 100vh;
    overflow: hidden;
    background: url("bg.jpg") no-repeat center center/cover;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 2;
}

.overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* RIGHT SIDE */
.right {
    width: 40%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right h2 {
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 30px;
    color: #555;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.options label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.options input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.options a {
    text-decoration: none;
    color: #007bff;
}

button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #0056b3;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .left {
        width: 100%;
        height: 30vh;
    }
    
    .right {
        width: 100%;
        padding: 30px 20px;
    }
    
    .overlay {
        bottom: 20px;
        left: 20px;
    }
    
    .overlay h2 {
        font-size: 20px;
    }
}