        /* Estilos básicos para demonstrar a estrutura. O CSS real seria mais detalhado. */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f2f5;
        }

        .header {
            background-color: #007cc0;
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header .logo {
            display: flex;
            align-items: center;
        }

        .header .logo img {
            height: 40px;
            margin-right: 10px;
        }

        .header .title {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }

        .content-wrapper {
            display: flex;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 1200px;
            width: 100%;
        }

        .image-section {
            flex: 1;
            /* Remove a propriedade background para usar a tag <img> */
            position: relative;
            overflow: hidden; /* Para garantir que a imagem não saia do contêiner */
        }
        
        .image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Recorta a imagem para cobrir todo o contêiner */
            object-position: center; /* Centraliza o corte */
        }

        .form-section {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
        }

        .form-section .logo-mini img {
            width: 150px;
            margin-bottom: 20px;
        }

        .form-section h2 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 10px;
        }

        .form-section p {
            color: #666;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #555;
        }

        .form-group input[type="text"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .captcha-container {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .captcha-container img {
            width: 100px;
            height: 40px;
            border: 1px solid #ccc;
            margin-left: 10px;
        }

        .button-container {
            margin-top: 20px;
        }

        .btn {
            width: 100%;
            padding: 12px;
            background-color: #007cc0;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
        }

        .form-footer {
            text-align: center;
            margin-top: 20px;
        }
        
        /* Media Query para telas menores */
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
            }
            .image-section {
                height: 200px; /* Altura fixa para a imagem em telas pequenas */
            }
        }