* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
}

.main {
    display: flex;
    height: 100%;
}

/* Left side */
.left {
    width: 50%;
    height: 100%;
}

.left img {
    width: 90%;
    height: 100%;
    object-fit: cover;
}

/* Right side */
.right {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f5f5;
}

.right h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.right p {
    color: #666;
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

.forgot {
    text-align: right;
    margin-bottom: 20px;
}

.forgot a {
    color: #007bff;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}