body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    height: 100vh;
    overflow: hidden; 
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    cursor: pointer;
}

.container {
    display: flex;
    align-items: center;
    height: 100vh;
    padding-left: 100px;
}

.left {
    max-width: 500px;
    z-index: 2;
}

h1 {
    font-size: 36px;
}

p {
    margin-bottom: 40px;
}

input {
    width: 250px;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    width: 250px;
    padding: 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background-color: #555;
    transform: scale(1.05);
}

.right img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 450px;
    height: auto;
}
