 body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #f5f5f5;
            display: flex;
            height: 100vh;
        }

        /* LADO ESQUERDO */
        .left {
            width: 50%;
            background: #ffffff; 
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .left img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        /* LADO DIREITO */
        .right {
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 40px;
            background: #f3eded;
        }
        h1 {
            color: #ff4f1f;
            margin-bottom: 20px;
            font-size: 32px;
        }
        form {
            width: 100%;
            max-width: 350px;
            display: flex;
            flex-direction: column;
        }
        input {
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #080808;
            border-radius: 6px;
            font-size: 16px;
        }
        button {
            padding: 12px;
            background: #ff4f1f;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 18px;
            cursor: pointer;
        }
        button:hover {
            opacity: 0.7;
        }